Completed
Push — master ( 8e829c...fc40f2 )
by Neomerx
01:53
created
src/Packages/Cookies/CookieContainerConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     public static function configureContainer(LimoncelloContainerInterface $container): void
37 37
     {
38 38
         $container[CookieJarInterface::class] =
39
-            function (PsrContainerInterface $container): CookieJarInterface {
39
+            function(PsrContainerInterface $container): CookieJarInterface {
40 40
                 $settings = $container->get(SettingsProviderInterface::class)->get(CookieSettings::class);
41 41
 
42 42
                 return new CookieJar(
Please login to merge, or discard this patch.
src/Packages/Session/SessionContainerConfigurator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public static function configureContainer(LimoncelloContainerInterface $container): void
36 36
     {
37
-        $container[SessionInterface::class] = function (PsrContainerInterface $container): SessionInterface {
37
+        $container[SessionInterface::class] = function(PsrContainerInterface $container): SessionInterface {
38 38
             /** @var SessionFunctionsInterface $functions */
39 39
             $functions = $container->get(SessionFunctionsInterface::class);
40 40
             $session   = new Session($functions);
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             return $session;
43 43
         };
44 44
 
45
-        $container[SessionFunctionsInterface::class] = function (): SessionFunctionsInterface {
45
+        $container[SessionFunctionsInterface::class] = function(): SessionFunctionsInterface {
46 46
             $functions = new SessionFunctions();
47 47
 
48 48
             return $functions;
Please login to merge, or discard this patch.
src/Packages/Data/DataSettings.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         );
89 89
         assert(file_exists($seedsListFile) === true, "Invalid Seeds file `$seedsListFile`.");
90 90
 
91
-        $modelsPath = $modelsFolder . DIRECTORY_SEPARATOR . $modelsFileMask;
91
+        $modelsPath = $modelsFolder.DIRECTORY_SEPARATOR.$modelsFileMask;
92 92
 
93 93
         $seedInit = $defaults[static::KEY_SEED_INIT] ?? null;
94 94
         assert(
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 
130 130
         $registered    = [];
131 131
         $modelSchemes  = new ModelSchemeInfo();
132
-        $registerModel = function ($modelClass) use ($modelSchemes, &$registered, $requireReverseRel) {
132
+        $registerModel = function($modelClass) use ($modelSchemes, &$registered, $requireReverseRel) {
133 133
             /** @var ModelInterface $modelClass */
134 134
             $modelSchemes->registerClass(
135 135
                 $modelClass,
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                 foreach ($relationships[RelationshipTypes::BELONGS_TO] as $relName => list($rClass, $fKey, $rRel)) {
146 146
                     /** @var string $rClass */
147 147
                     $modelSchemes->registerBelongsToOneRelationship($modelClass, $relName, $fKey, $rClass, $rRel);
148
-                    $registered[(string)$modelClass][$relName] = true;
148
+                    $registered[(string) $modelClass][$relName] = true;
149 149
                     $registered[$rClass][$rRel]                = true;
150 150
 
151 151
                     // Sanity check. Every `belongs_to` should be paired with `has_many` on the other side.
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
                             $rRelationships[RelationshipTypes::HAS_MANY][$rRel] === [$modelClass, $fKey, $relName]);
157 157
                     /** @var string $modelClass */
158 158
 
159
-                    assert($isRelationshipOk, "`belongsTo` relationship `$relName` of class $modelClass " .
159
+                    assert($isRelationshipOk, "`belongsTo` relationship `$relName` of class $modelClass ".
160 160
                         "should be paired with `hasMany` relationship.");
161 161
                 }
162 162
             }
@@ -170,14 +170,14 @@  discard block
 block discarded – undo
170 170
                         (isset($rRelationships[RelationshipTypes::BELONGS_TO][$rRel]) === true &&
171 171
                             $rRelationships[RelationshipTypes::BELONGS_TO][$rRel] === [$modelClass, $fKey, $relName]);
172 172
                     /** @var string $modelClass */
173
-                    assert($isRelationshipOk, "`hasMany` relationship `$relName` of class $modelClass " .
173
+                    assert($isRelationshipOk, "`hasMany` relationship `$relName` of class $modelClass ".
174 174
                         "should be paired with `belongsTo` relationship.");
175 175
                 }
176 176
             }
177 177
 
178 178
             if (array_key_exists(RelationshipTypes::BELONGS_TO_MANY, $relationships) === true) {
179 179
                 foreach ($relationships[RelationshipTypes::BELONGS_TO_MANY] as $relName => $data) {
180
-                    if (isset($registered[(string)$modelClass][$relName]) === true) {
180
+                    if (isset($registered[(string) $modelClass][$relName]) === true) {
181 181
                         continue;
182 182
                     }
183 183
                     /** @var string $rClass */
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
                         $rClass,
192 192
                         $rRel
193 193
                     );
194
-                    $registered[(string)$modelClass][$relName] = true;
194
+                    $registered[(string) $modelClass][$relName] = true;
195 195
                     $registered[$rClass][$rRel]                = true;
196 196
                 }
197 197
             }
Please login to merge, or discard this patch.
src/Packages/Authorization/AuthorizationSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
             "Invalid Policies folder `$policiesFolder`."
62 62
         );
63 63
         assert(empty($policiesFileMask) === false, "Invalid Policies file mask `$policiesFileMask`.");
64
-        $policiesPath = $policiesFolder . DIRECTORY_SEPARATOR . $policiesFileMask;
64
+        $policiesPath = $policiesFolder.DIRECTORY_SEPARATOR.$policiesFileMask;
65 65
 
66 66
         $topPolicyName = $defaults[static::KEY_TOP_POLICY_NAME];
67 67
 
Please login to merge, or discard this patch.