Completed
Push — master ( 43cd61...c32de9 )
by Iman
05:22
created
src/Forget.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
         if (in_array($method, ['aboutRoute', 'aboutAction', 'aboutUrl'])) {
34 34
 
35
-            $args = resolve(RouteNormalizer::class)->{'normalize'.ltrim($method, 'about')}($args);
35
+            $args = resolve(RouteNormalizer::class)->{'normalize' . ltrim($method, 'about')}($args);
36 36
 
37 37
             return resolve('heyman.chains')->forgetAbout(RouteEventListener::class, $args);
38 38
         }
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             resolve('heyman.chains')->forgetAbout(ViewEventListener::class, $args);
46 46
         }
47 47
 
48
-        if (in_array($method, ['aboutFetching', 'aboutSaving', 'aboutModel','aboutDeleting', 'aboutCreating', 'aboutUpdating'])) {
48
+        if (in_array($method, ['aboutFetching', 'aboutSaving', 'aboutModel', 'aboutDeleting', 'aboutCreating', 'aboutUpdating'])) {
49 49
             $method = ltrim($method, 'about');
50 50
             $method = str_replace('Fetching', 'retrieved', $method);
51 51
             $method = strtolower($method);
Please login to merge, or discard this patch.