@@ -115,7 +115,7 @@ |
||
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 |
@@ -1,8 +1,8 @@ |
||
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; |
@@ -105,7 +105,7 @@ |
||
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; |
@@ -1,8 +1,8 @@ |
||
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; |
@@ -1,8 +1,8 @@ |
||
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; |
@@ -1,8 +1,8 @@ |
||
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; |
@@ -1,8 +1,8 @@ |
||
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 |
@@ -1,8 +1,8 @@ |
||
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 |
@@ -1,8 +1,8 @@ |
||
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; |
@@ -1,8 +1,8 @@ |
||
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; |
@@ -105,7 +105,7 @@ |
||
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; |
@@ -1,8 +1,8 @@ |
||
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; |