Passed
Push — develop ( 936001...06817d )
by nguereza
27:30 queued 25:04
created
src/App/Application.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -63,8 +63,7 @@  discard block
 block discarded – undo
63 63
  * @class Application
64 64
  * @package Platine\Framework\App
65 65
  */
66
-class Application extends Container
67
-{
66
+class Application extends Container {
68 67
 
69 68
     /**
70 69
      * The application version
@@ -135,8 +134,7 @@  discard block
 block discarded – undo
135 134
      * Create new instance
136 135
      * @param string $basePath
137 136
      */
138
-    public function __construct(string $basePath = '')
139
-    {
137
+    public function __construct(string $basePath = '') {
140 138
         parent::__construct();
141 139
         
142 140
         $this->basePath = $basePath;
@@ -188,8 +186,7 @@  discard block
 block discarded – undo
188 186
      * @param string $env
189 187
      * @return $this
190 188
      */
191
-    public function setEnvironment(string $env)
192
-    {
189
+    public function setEnvironment(string $env) {
193 190
         $this->env = $env;
194 191
 
195 192
         return $this;
Please login to merge, or discard this patch.