Completed
Push — master ( 61017a...a1590e )
by Vladimir
02:25
created
src/Engines/FrontMatter/ExpandedValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      *
40 40
      * @param string $string
41 41
      */
42
-    public function __construct($string)
42
+    public function __construct ($string)
43 43
     {
44 44
         $this->evaluated = $string;
45 45
     }
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * @return string
49 49
      */
50
-    public function __toString()
50
+    public function __toString ()
51 51
     {
52 52
         return $this->getEvaluated();
53 53
     }
Please login to merge, or discard this patch.
src/Manager/CollectionManager.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      *
30 30
      * @return ContentItem
31 31
      */
32
-    public function &getContentItem ($filePath)
32
+    public function &getContentItem($filePath)
33 33
     {
34 34
         return $this->trackedItemsFlattened[$filePath];
35 35
     }
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      *
40 40
      * @return ContentItem[][]
41 41
      */
42
-    public function &getCollections ()
42
+    public function &getCollections()
43 43
     {
44 44
         return $this->trackedItems;
45 45
     }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     /**
130 130
      * {@inheritdoc}
131 131
      */
132
-    public function createNewItem($filePath)
132
+    public function createNewItem ($filePath)
133 133
     {
134 134
         $collection = $this->getTentativeCollectionName($filePath);
135 135
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     /**
142 142
      * {@inheritdoc}
143 143
      */
144
-    public function refreshItem($filePath)
144
+    public function refreshItem ($filePath)
145 145
     {
146 146
         return;
147 147
     }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     /**
150 150
      * {@inheritdoc}
151 151
      */
152
-    protected function handleTrackableItem($filePath, $options = array())
152
+    protected function handleTrackableItem ($filePath, $options = array())
153 153
     {
154 154
         $collectionName = $options['namespace'];
155 155
 
Please login to merge, or discard this patch.
src/Manager/TrackingManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     protected $tracking;
82 82
 
83
-    public function __construct()
83
+    public function __construct ()
84 84
     {
85 85
         parent::__construct();
86 86
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      * @param string      $filePath
139 139
      * @param string|null $namespace
140 140
      */
141
-    public function delArrayFromTracker($key, $filePath, $namespace = null)
141
+    public function delArrayFromTracker ($key, $filePath, $namespace = null)
142 142
     {
143 143
         if (is_null($namespace))
144 144
         {
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
      * @param array  $includes
268 268
      * @param array  $excludes
269 269
      */
270
-    public function scanTrackableItems($path, $options = array(), $includes = array(), $excludes = array())
270
+    public function scanTrackableItems ($path, $options = array(), $includes = array(), $excludes = array())
271 271
     {
272 272
         $fileExplorerFlags  = array_key_exists('fileExplorer', $options) ? $options['fileExplorer'] : null;
273 273
         $this->fileExplorer = FileExplorer::create($path, $excludes, $includes, $fileExplorerFlags);
Please login to merge, or discard this patch.
tests/Utilities/PHPUnit_Stakx_TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     protected $fs;
33 33
 
34
-    public function setUp()
34
+    public function setUp ()
35 35
     {
36 36
         $this->dummyFile    = vfsStream::newFile('stakx.html.twig');
37 37
         $this->rootDir      = vfsStream::setup();
Please login to merge, or discard this patch.
src/Exception/FileAwareException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     private $lineNumber;
18 18
     private $filePath;
19 19
 
20
-    public function __construct($message = "", $code = 0, \Exception $previous = null, $path = "", $line = -1)
20
+    public function __construct ($message = "", $code = 0, \Exception $previous = null, $path = "", $line = -1)
21 21
     {
22 22
         parent::__construct($message, $code, $previous);
23 23
 
Please login to merge, or discard this patch.
src/Twig/GroupByFilter.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,9 @@
 block discarded – undo
10 10
 
11 11
         foreach ($array as $key => $item)
12 12
         {
13
-            if (!isset($item[$sortKey])) { continue; }
13
+            if (!isset($item[$sortKey]))
14
+            {
15
+continue; }
14 16
 
15 17
             $groupBy = $item[$sortKey];
16 18
 
Please login to merge, or discard this patch.
src/Engines/ParsingEngine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,5 +4,5 @@
 block discarded – undo
4 4
 
5 5
 interface ParsingEngine
6 6
 {
7
-    public function parse($context);
7
+    public function parse ($context);
8 8
 }
9 9
\ No newline at end of file
Please login to merge, or discard this patch.
src/Engines/PlainTextEngine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
 class PlainTextEngine implements ParsingEngine
11 11
 {
12
-    public function parse($context)
12
+    public function parse ($context)
13 13
     {
14 14
         return $context;
15 15
     }
Please login to merge, or discard this patch.
src/Object/ContentItem.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             $this->bodyContentEvaluated = true;
59 59
         }
60 60
 
61
-        return (string)$this->bodyContent;
61
+        return (string) $this->bodyContent;
62 62
     }
63 63
 
64 64
     /**
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     /**
104 104
      * @return PageView
105 105
      */
106
-    public function &getPageView ()
106
+    public function &getPageView()
107 107
     {
108 108
         return $this->parentPageView;
109 109
     }
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /**
127 127
      * {@inheritdoc}
128 128
      */
129
-    public function jsonSerialize()
129
+    public function jsonSerialize ()
130 130
     {
131 131
         return array_merge($this->getFrontMatter(), array(
132 132
             'content' => $this->getContent(),
Please login to merge, or discard this patch.