Completed
Pull Request — master (#41)
by Vladimir
02:31
created
src/allejo/stakx/Command/BuildCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     /**
17 17
      * {@inheritdoc}
18 18
      */
19
-    protected function configure()
19
+    protected function configure ()
20 20
     {
21 21
         parent::configure();
22 22
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * {@inheritdoc}
29 29
      */
30
-    protected function execute(InputInterface $input, OutputInterface $output)
30
+    protected function execute (InputInterface $input, OutputInterface $output)
31 31
     {
32 32
         parent::execute($input, $output);
33 33
 
Please login to merge, or discard this patch.
src/allejo/stakx/Command/BuildableCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * {@inheritdoc}
42 42
      */
43
-    protected function configure()
43
+    protected function configure ()
44 44
     {
45 45
         $this->fs = new Filesystem();
46 46
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * {@inheritdoc}
55 55
      */
56
-    protected function execute(InputInterface $input, OutputInterface $output)
56
+    protected function execute (InputInterface $input, OutputInterface $output)
57 57
     {
58 58
         $this->website = new Website($output);
59 59
         $this->website->setConfLess($input->getOption('no-conf'));
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      *
66 66
      * @param InputInterface $input
67 67
      */
68
-    protected function configureBuild(InputInterface $input)
68
+    protected function configureBuild (InputInterface $input)
69 69
     {
70 70
         $this->website->setConfiguration($input->getOption('conf'));
71 71
         $this->website->setSafeMode($input->getOption('safe'));
Please login to merge, or discard this patch.
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/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.