Completed
Pull Request — master (#41)
by Vladimir
04:25
created
src/allejo/stakx/FrontMatter/ExpandedValue.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      *
38 38
      * @param string $string
39 39
      */
40
-    public function __construct($string)
40
+    public function __construct ($string)
41 41
     {
42 42
         $this->evaluated = $string;
43 43
     }
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * @return string
47 47
      */
48
-    public function __toString()
48
+    public function __toString ()
49 49
     {
50 50
         return $this->getEvaluated();
51 51
     }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @return string
60 60
      */
61
-    public function getEvaluated()
61
+    public function getEvaluated ()
62 62
     {
63 63
         return $this->evaluated;
64 64
     }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      *
72 72
      * @param string $string
73 73
      */
74
-    public function setEvaluated($string)
74
+    public function setEvaluated ($string)
75 75
     {
76 76
         $this->evaluated = $string;
77 77
     }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      *
82 82
      * @return string[]
83 83
      */
84
-    public function getIterators()
84
+    public function getIterators ()
85 85
     {
86 86
         return $this->iterators;
87 87
     }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * @param string     $variableName
95 95
      * @param string|int $variableValue
96 96
      */
97
-    public function setIterator($variableName, $variableValue)
97
+    public function setIterator ($variableName, $variableValue)
98 98
     {
99 99
         $this->iterators[$variableName] = $variableValue;
100 100
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Exception/FileAwareException.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     private $lineNumber;
16 16
     private $filePath;
17 17
 
18
-    public function __construct($message = '', $code = 0, \Exception $previous = null, $path = '', $line = -1)
18
+    public function __construct ($message = '', $code = 0, \Exception $previous = null, $path = '', $line = -1)
19 19
     {
20 20
         parent::__construct($message, $code, $previous);
21 21
 
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
         $this->lineNumber = $line;
24 24
     }
25 25
 
26
-    public function getLineNumber()
26
+    public function getLineNumber ()
27 27
     {
28 28
         return $this->lineNumber;
29 29
     }
30 30
 
31
-    public function getPath()
31
+    public function getPath ()
32 32
     {
33 33
         return $this->filePath;
34 34
     }
35 35
 
36
-    public static function castException(\Exception $e, $filePath)
36
+    public static function castException (\Exception $e, $filePath)
37 37
     {
38 38
         $lineNumber = ($e instanceof \Twig_Error_Syntax) ? $e->getTemplateLine() : -1;
39 39
 
Please login to merge, or discard this patch.
src/allejo/stakx/Compiler.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     /** @var Twig_Environment */
43 43
     private $twig;
44 44
 
45
-    public function __construct()
45
+    public function __construct ()
46 46
     {
47 47
         parent::__construct();
48 48
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * @param string|false $template
54 54
      */
55
-    public function setRedirectTemplate($template)
55
+    public function setRedirectTemplate ($template)
56 56
     {
57 57
         $this->redirectTemplate = $template;
58 58
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * @param Folder $folder
62 62
      */
63
-    public function setTargetFolder(Folder $folder)
63
+    public function setTargetFolder (Folder $folder)
64 64
     {
65 65
         $this->folder = $folder;
66 66
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * @param PageView[] $pageViews
70 70
      */
71
-    public function setPageViews(array $pageViews)
71
+    public function setPageViews (array $pageViews)
72 72
     {
73 73
         $this->pageViews = $pageViews;
74 74
     }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      *
83 83
      * @since 0.1.0
84 84
      */
85
-    public function compileAll()
85
+    public function compileAll ()
86 86
     {
87 87
         foreach ($this->pageViews as &$pageView)
88 88
         {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @since 0.1.1
102 102
      */
103
-    private function compilePageView(&$pageView)
103
+    private function compilePageView (&$pageView)
104 104
     {
105 105
         switch ($pageView->getType())
106 106
         {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      *
129 129
      * @since 0.1.1
130 130
      */
131
-    private function compileStaticPageView(&$pageView)
131
+    private function compileStaticPageView (&$pageView)
132 132
     {
133 133
         $targetFile = $pageView->getTargetFile();
134 134
         $output = $this->renderStaticPageView($pageView);
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      *
145 145
      * @since 0.1.1
146 146
      */
147
-    private function compileDynamicPageViews(&$pageView)
147
+    private function compileDynamicPageViews (&$pageView)
148 148
     {
149 149
         $contentItems = $pageView->getContentItems();
150 150
         $template = $this->createTwigTemplate($pageView);
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      *
167 167
      * @since 0.1.1
168 168
      */
169
-    private function compileRepeaterPageViews(&$pageView)
169
+    private function compileRepeaterPageViews (&$pageView)
170 170
     {
171 171
         $pageView->rewindPermalink();
172 172
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
      *
196 196
      * @since 0.1.1
197 197
      */
198
-    private function compileStandardRedirects(&$pageView)
198
+    private function compileStandardRedirects (&$pageView)
199 199
     {
200 200
         $redirects = $pageView->getRedirects();
201 201
 
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      *
219 219
      * @since 0.1.1
220 220
      */
221
-    private function compileExpandedRedirects(&$pageView)
221
+    private function compileExpandedRedirects (&$pageView)
222 222
     {
223 223
         $permalinks = $pageView->getRepeaterPermalinks();
224 224
 
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
      *
257 257
      * @return string
258 258
      */
259
-    private function renderRepeaterPageView(&$template, &$pageView, &$expandedValue)
259
+    private function renderRepeaterPageView (&$template, &$pageView, &$expandedValue)
260 260
     {
261 261
         $this->twig->addGlobal('__currentTemplate', $pageView->getFilePath());
262 262
 
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
      *
283 283
      * @return string
284 284
      */
285
-    private function renderDynamicPageView(&$template, &$pageView, &$contentItem)
285
+    private function renderDynamicPageView (&$template, &$pageView, &$contentItem)
286 286
     {
287 287
         $this->twig->addGlobal('__currentTemplate', $pageView->getFilePath());
288 288
 
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
      *
306 306
      * @return string
307 307
      */
308
-    private function renderStaticPageView(&$pageView)
308
+    private function renderStaticPageView (&$pageView)
309 309
     {
310 310
         $this->twig->addGlobal('__currentTemplate', $pageView->getFilePath());
311 311
 
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
      *
330 330
      * @return Twig_Template
331 331
      */
332
-    private function createTwigTemplate(&$pageView)
332
+    private function createTwigTemplate (&$pageView)
333 333
     {
334 334
         try
335 335
         {
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/OrderFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 class OrderFilter
11 11
 {
12
-    public function __invoke($array, $key, $order = 'ASC')
12
+    public function __invoke ($array, $key, $order = 'ASC')
13 13
     {
14 14
         if (!is_array($array))
15 15
         {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         return $array;
35 35
     }
36 36
 
37
-    public static function get()
37
+    public static function get ()
38 38
     {
39 39
         return new \Twig_SimpleFilter('order', new self());
40 40
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/GroupByFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 class GroupByFilter
11 11
 {
12
-    public function __invoke($array, $sortKey)
12
+    public function __invoke ($array, $sortKey)
13 13
     {
14 14
         $arr = array();
15 15
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         return $arr;
39 39
     }
40 40
 
41
-    public static function get()
41
+    public static function get ()
42 42
     {
43 43
         return new \Twig_SimpleFilter('group', new self());
44 44
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/FileFunction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,14 +11,14 @@
 block discarded – undo
11 11
 
12 12
 class FileFunction extends TwigFilesystem
13 13
 {
14
-    public function __invoke(Twig_Environment $env, $filePath)
14
+    public function __invoke (Twig_Environment $env, $filePath)
15 15
     {
16 16
         parent::__invoke($env, $filePath);
17 17
 
18 18
         return file_get_contents($this->path);
19 19
     }
20 20
 
21
-    public static function get()
21
+    public static function get ()
22 22
     {
23 23
         return new \Twig_SimpleFunction('file', new self(), array(
24 24
             'needs_environment' => true,
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/TwigExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 class TwigExtension extends \Twig_Extension
11 11
 {
12
-    public function getFilters()
12
+    public function getFilters ()
13 13
     {
14 14
         return array(
15 15
             GroupByFilter::get(),
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
         );
19 19
     }
20 20
 
21
-    public function getFunctions()
21
+    public function getFunctions ()
22 22
     {
23 23
         return array(
24 24
             BaseUrlFunction::get(),
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      *
32 32
      * @return string The extension name
33 33
      */
34
-    public function getName()
34
+    public function getName ()
35 35
     {
36 36
         return 'stakx_core_extension';
37 37
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/TwigFilesystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     protected $dir;
19 19
     protected $path;
20 20
 
21
-    public function __invoke(Twig_Environment $env, $location)
21
+    public function __invoke (Twig_Environment $env, $location)
22 22
     {
23 23
         $this->fs = new Filesystem();
24 24
         $this->globs = $env->getGlobals();
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/FinderFunction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 class FinderFunction extends TwigFilesystem
14 14
 {
15
-    public function __invoke(Twig_Environment $env, $folderLocation)
15
+    public function __invoke (Twig_Environment $env, $folderLocation)
16 16
     {
17 17
         parent::__invoke($env, $folderLocation);
18 18
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         return $finder;
23 23
     }
24 24
 
25
-    public static function get()
25
+    public static function get ()
26 26
     {
27 27
         return new \Twig_SimpleFunction('finder', new self(), array(
28 28
             'needs_environment' => true,
Please login to merge, or discard this patch.