Completed
Push — master ( 0e355a...8ba98d )
by Nicolas
09:31
created
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.