Completed
Push — master ( 637f9b...59f005 )
by arto
02:08
created
source/RuntimeContentBasedTemplate.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
     }
116 116
 
117 117
     /**
118
-     * @param null $content
118
+     * @param null|string $content
119 119
      * @param null|string $closingDelimiter
120 120
      * @param null|string $openingDelimiter
121 121
      * @throws InvalidArgumentException
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since: 2015-10-02
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since: 2015-10-02
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 use InvalidArgumentException;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         $prefix     = $this->openingDelimiter;
106 106
         $suffix     = $this->closingDelimiter;
107 107
         $variables  = parent::getVariables();
108
-        $array      = array();  //@todo find a better name
108
+        $array      = array(); //@todo find a better name
109 109
 
110 110
         foreach ($variables as $key => $value) {
111 111
             $array[$prefix . $key . $suffix] = $value;
Please login to merge, or discard this patch.
source/AbstractTemplate.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since 2015-10-01
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since 2015-10-01
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 use InvalidArgumentException;
Please login to merge, or discard this patch.
source/CallableComplexFileBasedTemplateManager.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since 2015-10-28
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since 2015-10-28
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 use InvalidArgumentException;
Please login to merge, or discard this patch.
source/ComplexFileBasedTemplate.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since 2015-10-03
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since 2015-10-03
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 use RuntimeException;
Please login to merge, or discard this patch.
source/DelimiterInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since 2015-10-07
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since 2015-10-07
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 interface DelimiterInterface
Please login to merge, or discard this patch.
source/FileBasedTemplate.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since: 2015-10-02
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since: 2015-10-02
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 use InvalidArgumentException;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         $prefix     = $this->openingDelimiter;
106 106
         $suffix     = $this->closingDelimiter;
107 107
         $variables  = parent::getVariables();
108
-        $array      = array();  //@todo find a better name
108
+        $array      = array(); //@todo find a better name
109 109
 
110 110
         foreach ($variables as $key => $value) {
111 111
             $array[$prefix . $key . $suffix] = $value;
Please login to merge, or discard this patch.
source/TemplateDumper.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since 2015-10-09
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since 2015-10-09
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 class TemplateDumper
Please login to merge, or discard this patch.
source/TemplateInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since 2015-10-02
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since 2015-10-02
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 use RuntimeException;
Please login to merge, or discard this patch.
source/TryToInstallZendExpressiveTemplate.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author stev leibelt <[email protected]>
4
- * @since 2016-01-30
5
- */
3
+     * @author stev leibelt <[email protected]>
4
+     * @since 2016-01-30
5
+     */
6 6
 namespace Net\Bazzline\Component\Template;
7 7
 
8 8
 use Composer\Semver\Constraint\Constraint;
Please login to merge, or discard this patch.