Completed
Pull Request — 2.0 (#32)
by Micheal
02:31
created
Manager/ModuleManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * Return all the enabled modules
65
-     * @return array
65
+     * @return boolean
66 66
      */
67 67
     public function enabled()
68 68
     {
Please login to merge, or discard this patch.
Providers/RouteServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     protected $namespace = 'Modules\Workshop\Http\Controllers';
12 12
 
13 13
     /**
14
-     * @return string
14
+     * @return boolean
15 15
      */
16 16
     protected function getFrontendRoute()
17 17
     {
Please login to merge, or discard this patch.
Scaffold/Theme/FileTypes/ThemeJson.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -19,6 +19,11 @@
 block discarded – undo
19 19
         $this->finder->put($this->themePathForFile($this->options['name'], 'theme.json'), $stub);
20 20
     }
21 21
 
22
+    /**
23
+     * @param string $stub
24
+     *
25
+     * @return string
26
+     */
22 27
     public function replaceContentInStub($stub)
23 28
     {
24 29
         return str_replace(
Please login to merge, or discard this patch.
Scaffold/Theme/FileTypes/ComposerJson.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -19,6 +19,11 @@
 block discarded – undo
19 19
         $this->finder->put($this->themePathForFile($this->options['name'], 'theme.json'), $stub);
20 20
     }
21 21
 
22
+    /**
23
+     * @param string $stub
24
+     *
25
+     * @return string
26
+     */
22 27
     public function replaceContentInStub($stub)
23 28
     {
24 29
         return str_replace(
Please login to merge, or discard this patch.