Completed
Push — master ( ae2a76...966ecc )
by James
05:36
created
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.