Completed
Pull Request — master (#41)
by Vladimir
02:38
created
src/allejo/stakx/Manager/MenuManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /** @var PageView */
16 16
     private $siteMenu;
17 17
 
18
-    public function __construct()
18
+    public function __construct ()
19 19
     {
20 20
         parent::__construct();
21 21
 
Please login to merge, or discard this patch.
src/allejo/stakx/Compiler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /** @var Twig_Environment */
42 42
     private $twig;
43 43
 
44
-    public function __construct()
44
+    public function __construct ()
45 45
     {
46 46
         parent::__construct();
47 47
 
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/PageManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * PageManager constructor
34 34
      */
35
-    public function __construct()
35
+    public function __construct ()
36 36
     {
37 37
         parent::__construct();
38 38
 
Please login to merge, or discard this patch.
src/allejo/stakx/Object/Website.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -154,11 +154,11 @@  discard block
 block discarded – undo
154 154
         $twigEnv->configureTwig($this->getConfiguration(), array(
155 155
             'safe'    => $this->safeMode,
156 156
             'globals' => array(
157
-                array('name' => 'site',        'value' => $this->getConfiguration()->getConfiguration()),
157
+                array('name' => 'site', 'value' => $this->getConfiguration()->getConfiguration()),
158 158
                 array('name' => 'collections', 'value' => $this->cm->getJailedCollections()),
159
-                array('name' => 'menu',        'value' => $this->mm->getSiteMenu()),
160
-                array('name' => 'pages',       'value' => $this->pm->getJailedStaticPageViews()),
161
-                array('name' => 'data',        'value' => $this->dm->getDataItems())
159
+                array('name' => 'menu', 'value' => $this->mm->getSiteMenu()),
160
+                array('name' => 'pages', 'value' => $this->pm->getJailedStaticPageViews()),
161
+                array('name' => 'data', 'value' => $this->dm->getDataItems())
162 162
             )
163 163
         ));
164 164
 
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
     /**
332 332
      * @return boolean
333 333
      */
334
-    public function isNoClean()
334
+    public function isNoClean ()
335 335
     {
336 336
         return $this->noClean;
337 337
     }
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
     /**
340 340
      * @param boolean $noClean
341 341
      */
342
-    public function setNoClean($noClean)
342
+    public function setNoClean ($noClean)
343 343
     {
344 344
         $this->noClean = $noClean;
345 345
     }
Please login to merge, or discard this patch.
tests/allejo/stakx/Test/StreamInterceptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public static $output = '';
13 13
 
14
-    public function filter($in, $out, &$consumed, $closing)
14
+    public function filter ($in, $out, &$consumed, $closing)
15 15
     {
16 16
         while ($bucket = stream_bucket_make_writeable($in))
17 17
         {
Please login to merge, or discard this patch.
tests/allejo/stakx/Test/PHPUnit_Stakx_TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected $fs;
38 38
 
39
-    public function setUp()
39
+    public function setUp ()
40 40
     {
41 41
         $this->dummyFile = vfsStream::newFile('stakx.html.twig');
42 42
         $this->rootDir   = vfsStream::setup();
Please login to merge, or discard this patch.