Completed
Push — master ( cb46a0...974133 )
by Marc
04:34
created
src/Factory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      *
21 21
      * @param string $type
22 22
      * @param Config $config
23
-     * @return RendererInterface
23
+     * @return string
24 24
      * @throws Exception
25 25
      */
26 26
     public static function createRenderer($type, Config $config = null)
Please login to merge, or discard this patch.
src/Inigo/Parser.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -149,6 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     /**
151 151
      *
152
+     * @param string $name
152 153
      */
153 154
     public function addSetting($name, $value = '')
154 155
     {
@@ -226,6 +227,7 @@  discard block
 block discarded – undo
226 227
 
227 228
     /**
228 229
      *
230
+     * @param string $s
229 231
      */
230 232
     public function parse($s)
231 233
     {
Please login to merge, or discard this patch.
src/XmlRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     private function xml2xhtml($xml)
52 52
     {
53
-        return preg_replace_callback('#<(\w+)([^>]*)\s*/>#s', function ($m) {
53
+        return preg_replace_callback('#<(\w+)([^>]*)\s*/>#s', function($m) {
54 54
             $xhtml_tags = array(
55 55
                 'br', 'hr', 'input', 'frame', 'img', 'area', 'link', 'col',
56 56
                 'base', 'basefont', 'param'
Please login to merge, or discard this patch.