Completed
Push — develop ( 9ff263...db45de )
by Schlaefer
07:11 queued 04:40
created
lib/Phile/Model/Page.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     /**
134 134
      * set content of page
135 135
      *
136
-     * @param $content
136
+     * @param string $content
137 137
      */
138 138
     public function setContent($content)
139 139
     {
Please login to merge, or discard this patch.
lib/Phile/Model/Meta.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
     protected function parseRawData($rawData)
82 82
     {
83 83
         /**
84
- * @var \Phile\ServiceLocator\MetaInterface $metaParser
84
+         * @var \Phile\ServiceLocator\MetaInterface $metaParser
85 85
 */
86 86
         $metaParser = ServiceLocator::getService('Phile_Parser_Meta');
87 87
         $data       = $metaParser->parse($rawData);
Please login to merge, or discard this patch.
lib/Phile/Repository/Page.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,8 +128,8 @@
 block discarded – undo
128 128
                     $column = array();
129 129
                     foreach ($pages as $page) {
130 130
                         /**
131
-            * @var \Phile\Model\Page $page
132
-            */
131
+                         * @var \Phile\Model\Page $page
132
+                         */
133 133
                         $meta = $page->getMeta();
134 134
                         if ($sort['type'] === 'page') {
135 135
                             $method = 'get' . ucfirst($key);
Please login to merge, or discard this patch.
lib/Phile/Repository/PageCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     public function offsetSet($offset, $value)
77 77
     {
78 78
         $this->load();
79
-        $this->pages[$offset] =    $value;
79
+        $this->pages[$offset] = $value;
80 80
     }
81 81
 
82 82
     public function offsetUnset($offset)
Please login to merge, or discard this patch.
lib/Phile/Plugin/PluginRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,12 +16,12 @@  discard block
 block discarded – undo
16 16
 {
17 17
 
18 18
     /**
19
- * @var array of AbstractPlugin
19
+     * @var array of AbstractPlugin
20 20
 */
21 21
     protected $plugins = [];
22 22
 
23 23
     /**
24
- * @var array errors during load; keys: 'message' and 'code'
24
+     * @var array errors during load; keys: 'message' and 'code'
25 25
 */
26 26
     protected $loadErrors = [];
27 27
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         }
83 83
 
84 84
         /**
85
- * @var \Phile\Plugin\AbstractPlugin $plugin
85
+         * @var \Phile\Plugin\AbstractPlugin $plugin
86 86
 */
87 87
         $plugin = new $pluginClassName;
88 88
         if (($plugin instanceof AbstractPlugin) === false) {
Please login to merge, or discard this patch.
lib/Phile/Plugin/AbstractPlugin.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
         if (!is_callable([$this, $method])) {
118 118
             $class = get_class($this);
119 119
             throw new \RuntimeException(
120
-                "Event $eventKey can't invoke $class::$method(). Not callable.",
120
+                "event $eventKey can't invoke $class::$method(). Not callable.",
121 121
                 1428564865
122 122
             );
123 123
         }
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,17 +20,17 @@
 block discarded – undo
20 20
 {
21 21
 
22 22
     /**
23
- * @var string plugin attributes
23
+     * @var string plugin attributes
24 24
 */
25 25
     private $plugin = [];
26 26
 
27 27
     /**
28
- * @var array subscribed Phile events ['eventName' => 'classMethodToCall']
28
+     * @var array subscribed Phile events ['eventName' => 'classMethodToCall']
29 29
 */
30 30
     protected $events = [];
31 31
 
32 32
     /**
33
- * @var array the plugin settings
33
+     * @var array the plugin settings
34 34
 */
35 35
     protected $settings = [];
36 36
 
Please login to merge, or discard this patch.
simpleFileDataPersistence/Classes/Persistence/SimpleFileDataPersistence.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class SimpleFileDataPersistence implements PersistenceInterface
18 18
 {
19 19
     /**
20
- * @var string $dataDirectory the data storage directory
20
+     * @var string $dataDirectory the data storage directory
21 21
 */
22 22
     protected $dataDirectory;
23 23
 
Please login to merge, or discard this patch.
plugins/phile/errorHandler/Classes/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
  */
22 22
 class Plugin extends AbstractPlugin
23 23
 {
24
-    const HANDLER_ERROR_LOG        = 'error_log';
25
-    const HANDLER_DEVELOPMENT    = 'development';
24
+    const HANDLER_ERROR_LOG = 'error_log';
25
+    const HANDLER_DEVELOPMENT = 'development';
26 26
 
27 27
     protected $events = ['plugins_loaded' => 'onPluginsLoaded'];
28 28
 
Please login to merge, or discard this patch.
plugins/phile/parserMeta/Classes/Parser/Meta.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 class Meta implements MetaInterface
19 19
 {
20 20
     /**
21
- * @var array $config the configuration for this parser
21
+     * @var array $config the configuration for this parser
22 22
 */
23 23
     private $config;
24 24
 
Please login to merge, or discard this patch.