Completed
Push — master ( 966ecc...673eeb )
by James
04:29
created
src/WebHelper.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@
 block discarded – undo
237 237
      *
238 238
      * @param string $directive the directive to be tested
239 239
      *
240
-     * @return bool TRUE if the $directive is known word
240
+     * @return integer TRUE if the $directive is known word
241 241
      */
242 242
     private function validateDirective($directive)
243 243
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@
 block discarded – undo
268 268
             return '';
269 269
         }
270 270
 
271
-        $sortByVersion = function (\SplFileInfo $aFile, \SplFileInfo $bFile) {
271
+        $sortByVersion = function(\SplFileInfo $aFile, \SplFileInfo $bFile) {
272 272
             $aVersion = basename($aFile->getRelativePath());
273 273
             $bVersion = basename($bFile->getRelativePath());
274 274
 
Please login to merge, or discard this patch.
src/WebProject/LaravelWebProject.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -28,20 +28,20 @@
 block discarded – undo
28 28
         parent::__construct('laravel', $version);
29 29
     }
30 30
 
31
-     /**
32
-      * Sets the web sub-directory and the writeable directories of the Laravel project.
33
-      *
34
-      * {@inheritdoc}
35
-      *
36
-      * @return WebProjectInterface the instance of the web project
37
-      */
38
-     public function setDirProperties()
39
-     {
40
-         $this->setWebDir('/public');
41
-         $this->setWriteables(array('/storage/logs'));
42
-
43
-         return $this;
44
-     }
31
+        /**
32
+         * Sets the web sub-directory and the writeable directories of the Laravel project.
33
+         *
34
+         * {@inheritdoc}
35
+         *
36
+         * @return WebProjectInterface the instance of the web project
37
+         */
38
+        public function setDirProperties()
39
+        {
40
+            $this->setWebDir('/public');
41
+            $this->setWriteables(array('/storage/logs'));
42
+
43
+            return $this;
44
+        }
45 45
 
46 46
     /**
47 47
      * Check if $package matches the specificities of a Laravel web project.
Please login to merge, or discard this patch.
src/WebProject/WebProjectInterface.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@
 block discarded – undo
20 20
  */
21 21
 interface WebProjectInterface
22 22
 {
23
-     /**
24
-      * Sets host, location and port.
25
-      *
26
-      * @param Array $needs host, location and port to configure
27
-      *
28
-      * @return WebProject this WebProject Instance
29
-      */
30
-     public function setNeeds($needs);
23
+        /**
24
+         * Sets host, location and port.
25
+         *
26
+         * @param Array $needs host, location and port to configure
27
+         *
28
+         * @return WebProject this WebProject Instance
29
+         */
30
+        public function setNeeds($needs);
31 31
 
32 32
     /**
33 33
      * Says if a Package is kind of a WebProject.
Please login to merge, or discard this patch.