Completed
Push — master ( 8ba98d...95d31d )
by Nicolas
10:43 queued 08:56
created
src/Commands/GenerateNotificationCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
     protected $argumentName = 'name';
21 21
 
22 22
     /**
23
-    * The console command description.
24
-    *
25
-    * @var string
26
-    */
23
+     * The console command description.
24
+     *
25
+     * @var string
26
+     */
27 27
     protected $description = 'Generate new notification class for the specified module.';
28 28
 
29 29
     /**
Please login to merge, or discard this patch.
src/Module.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
         return Str::studly($this->name);
95 95
     }
96 96
 
97
-  /**
98
-   * Get name in snake case.
99
-   *
100
-   * @return string
101
-   */
97
+    /**
98
+     * Get name in snake case.
99
+     *
100
+     * @return string
101
+     */
102 102
     public function getSnakeName()
103 103
     {
104 104
         return Str::snake($this->name);
@@ -284,11 +284,11 @@  discard block
 block discarded – undo
284 284
         ->load($this->get('providers', []));
285 285
     }
286 286
 
287
-  /**
288
-   * Get the path to the cached *_module.php file.
289
-   *
290
-   * @return string
291
-   */
287
+    /**
288
+     * Get the path to the cached *_module.php file.
289
+     *
290
+     * @return string
291
+     */
292 292
     public function getCachedServicesPath()
293 293
     {
294 294
         return Str::replaceLast('services.php', $this->getSnakeName() . '_module.php', $this->app->getCachedServicesPath());
Please login to merge, or discard this patch.