Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3. class UserDefinition {
  4.  
  5.     /**
  6.      * Username definition
  7.      * @return FieldDefinition
  8.      */
  9.     public function username() {
  10.         return FieldDefinition::builder()
  11.             ->type("string")
  12.             ->length(32)
  13.             ->default(null)
  14.             ->nullable(function () {
  15.                 // some logic
  16.             });
  17.     }
  18. }