@@ -98,7 +98,7 @@ |
||
98 | 98 | */ |
99 | 99 | public function register() |
100 | 100 | { |
101 | - $this->app->singleton('metadata', function ($app) { |
|
101 | + $this->app->singleton('metadata', function($app) { |
|
102 | 102 | return new SimpleMetadataProvider('Data', self::$METANAMESPACE); |
103 | 103 | }); |
104 | 104 | } |
@@ -310,7 +310,7 @@ |
||
310 | 310 | } |
311 | 311 | /** |
312 | 312 | * Delete resource from a resource set. |
313 | - * @param ResourceSet|null $sourceResourceSet |
|
313 | + * @param ResourceSet $sourceResourceSet |
|
314 | 314 | * @param object $sourceEntityInstance |
315 | 315 | * |
316 | 316 | * return bool true if resources sucessfully deteled, otherwise false. |
@@ -79,7 +79,7 @@ |
||
79 | 79 | */ |
80 | 80 | public function register() |
81 | 81 | { |
82 | - $this->app->singleton('metadataControllers', function ($app) { |
|
82 | + $this->app->singleton('metadataControllers', function($app) { |
|
83 | 83 | return new MetadataControllerContainer(); |
84 | 84 | }); |
85 | 85 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | public function register() |
26 | 26 | { |
27 | - $this->app->singleton('odataquery', function ($app) { |
|
27 | + $this->app->singleton('odataquery', function($app) { |
|
28 | 28 | return new LaravelQuery(); |
29 | 29 | }); |
30 | 30 | } |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | $rf = new \ReflectionClass(get_class($this)); |
125 | 125 | $complex = $metadata->addEntityType($rf, $rf->getShortName(), $MetaNamespace); |
126 | 126 | $keyName = $this->getKeyName(); |
127 | - if(null != $keyName){ |
|
127 | + if (null != $keyName) { |
|
128 | 128 | $metadata->addKeyProperty($complex, $keyName, $this->mapping[$raw[$keyName]['type']]); |
129 | 129 | } |
130 | 130 | foreach ($raw as $key => $secret) { |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | $relations = ['hasManyThrough', 'belongsToMany', 'hasMany', 'morphMany', 'morphToMany']; |
251 | 251 | if (in_array($relation, $relations)) { |
252 | 252 | //Collection or array of models (because Collection is Arrayable) |
253 | - $relationships["HasMany"][$method] = $relatedModel; |
|
253 | + $relationships["HasMany"][$method] = $relatedModel; |
|
254 | 254 | } elseif ($relation === "morphTo") { |
255 | 255 | // Model isn't specified because relation is polymorphic |
256 | 256 | $relationships["UnknownPolyMorphSide"][$method] = |