| @@ -28,7 +28,7 @@ | ||
| 28 | 28 | * | 
| 29 | 29 | * This function will return a UUID | 
| 30 | 30 | * | 
| 31 | - * @return type string | |
| 31 | + * @return string string | |
| 32 | 32 | */ | 
| 33 | 33 | public static function generate() | 
| 34 | 34 |      { | 
| @@ -35,17 +35,17 @@ | ||
| 35 | 35 | |
| 36 | 36 | mt_srand((double)microtime()*10000); | 
| 37 | 37 | $charid = strtoupper(md5(uniqid(rand(), true))); | 
| 38 | - $hyphen = chr(45);// "-" | |
| 38 | + $hyphen = chr(45); // "-" | |
| 39 | 39 |              $uuid = chr(123)// "{" | 
| 40 | 40 | .substr($charid, 0, 8).$hyphen | 
| 41 | 41 | .substr($charid, 8, 4).$hyphen | 
| 42 | - .substr($charid,12, 4).$hyphen | |
| 43 | - .substr($charid,16, 4).$hyphen | |
| 44 | - .substr($charid,20,12) | |
| 45 | - .chr(125);// "}" | |
| 42 | + .substr($charid, 12, 4).$hyphen | |
| 43 | + .substr($charid, 16, 4).$hyphen | |
| 44 | + .substr($charid, 20, 12) | |
| 45 | + .chr(125); // "}" | |
| 46 | 46 | |
| 47 | -            $uuid = str_replace('{', '' , $uuid); | |
| 48 | -            $uuid = str_replace('}', '' , $uuid); | |
| 47 | +            $uuid = str_replace('{', '', $uuid); | |
| 48 | +            $uuid = str_replace('}', '', $uuid); | |
| 49 | 49 | |
| 50 | 50 | return $uuid; | 
| 51 | 51 | |
| @@ -30,7 +30,7 @@ | ||
| 30 | 30 | */ | 
| 31 | 31 | public function register() | 
| 32 | 32 |      { | 
| 33 | -        $this->app->singleton(UUIDManager::class, function () { | |
| 33 | +        $this->app->singleton(UUIDManager::class, function() { | |
| 34 | 34 | return new UUIDManager(); | 
| 35 | 35 | }); | 
| 36 | 36 | } | 
| @@ -6,11 +6,11 @@ | ||
| 6 | 6 | |
| 7 | 7 | class LaravelUuidServiceProvider extends ServiceProvider | 
| 8 | 8 |  { | 
| 9 | - /** | |
| 10 | - * Indicates if loading of the provider is deferred. | |
| 11 | - * | |
| 12 | - * @var bool | |
| 13 | - */ | |
| 9 | + /** | |
| 10 | + * Indicates if loading of the provider is deferred. | |
| 11 | + * | |
| 12 | + * @var bool | |
| 13 | + */ | |
| 14 | 14 | protected $defer = false; | 
| 15 | 15 | |
| 16 | 16 | /** | 
| @@ -28,7 +28,7 @@ | ||
| 28 | 28 | * Scope by uuid | 
| 29 | 29 | * @param string uuid of the model. | 
| 30 | 30 | * | 
| 31 | - */ | |
| 31 | + */ | |
| 32 | 32 | public function scopeUuid($query, $uuid, $first = true) | 
| 33 | 33 |      { | 
| 34 | 34 |          $match = preg_match('/^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/', $uuid); | 
| @@ -13,10 +13,10 @@ | ||
| 13 | 13 | protected static function boot() | 
| 14 | 14 |      { | 
| 15 | 15 | parent::boot(); | 
| 16 | -        static::creating(function ($model) { | |
| 16 | +        static::creating(function($model) { | |
| 17 | 17 |              $model->{config('uuid.default_uuid_column')} = UUIDManager::generate(); | 
| 18 | 18 | }); | 
| 19 | -        static::saving(function ($model) { | |
| 19 | +        static::saving(function($model) { | |
| 20 | 20 |              $original_uuid = $model->getOriginal(config('uuid.default_uuid_column')); | 
| 21 | 21 |              if ($original_uuid !== $model->{config('uuid.default_uuid_column')}) { | 
| 22 | 22 |                  $model->{config('uuid.default_uuid_column')} = $original_uuid; |