@@ -69,7 +69,7 @@ |
||
69 | 69 | * @param int $lifeTime The cache lifetime. |
70 | 70 | * If != 0, sets a specific lifetime for this cache entry (0 => infinite lifeTime). |
71 | 71 | * |
72 | - * @return boolean TRUE if the entry was successfully stored in the cache, FALSE otherwise. |
|
72 | + * @return boolean|null TRUE if the entry was successfully stored in the cache, FALSE otherwise. |
|
73 | 73 | */ |
74 | 74 | public function save($id, $data, $lifeTime = 0) |
75 | 75 | { |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | declare(strict_types = 1); |
3 | 3 | /** |
4 | - * This file is part of GitterBot package. |
|
5 | - * |
|
6 | - * @author Serafim <[email protected]> |
|
7 | - * @date 03.03.2016 15:08 |
|
8 | - * |
|
9 | - * For the full copyright and license information, please view the LICENSE |
|
10 | - * file that was distributed with this source code. |
|
11 | - */ |
|
4 | + * This file is part of GitterBot package. |
|
5 | + * |
|
6 | + * @author Serafim <[email protected]> |
|
7 | + * @date 03.03.2016 15:08 |
|
8 | + * |
|
9 | + * For the full copyright and license information, please view the LICENSE |
|
10 | + * file that was distributed with this source code. |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | |
14 | 14 | namespace Core\Doctrine; |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
77 | - * @return mixed|string |
|
77 | + * @return string |
|
78 | 78 | */ |
79 | 79 | public function getEscapedTextAttribute() |
80 | 80 | { |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
90 | - * @return mixed|string |
|
90 | + * @return string |
|
91 | 91 | */ |
92 | 92 | public function getTextWithoutSpecialCharsAttribute() |
93 | 93 | { |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
121 | - * @param $text |
|
121 | + * @param string $text |
|
122 | 122 | * @return Model |
123 | 123 | */ |
124 | 124 | public function pre($text) |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
130 | - * @param $code |
|
130 | + * @param string $code |
|
131 | 131 | * @param string $lang |
132 | 132 | * @return Model |
133 | 133 | */ |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
160 | - * @param $symbol |
|
160 | + * @param string $symbol |
|
161 | 161 | * @param $text |
162 | 162 | * @return string |
163 | 163 | */ |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
172 | - * @param $route |
|
172 | + * @param string $route |
|
173 | 173 | * @param array $args |
174 | 174 | * @param string $method |
175 | 175 | * @return Stream |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
184 | - * @param $route |
|
184 | + * @param string $route |
|
185 | 185 | * @param array $args |
186 | 186 | * @param null $content |
187 | 187 | * @param string $method |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | declare(strict_types = 1); |
3 | 3 | /** |
4 | - * This file is part of GitterBot package. |
|
5 | - * |
|
6 | - * @author Serafim <[email protected]> |
|
7 | - * @date 28.03.2016 14:35 |
|
8 | - * |
|
9 | - * For the full copyright and license information, please view the LICENSE |
|
10 | - * file that was distributed with this source code. |
|
11 | - */ |
|
4 | + * This file is part of GitterBot package. |
|
5 | + * |
|
6 | + * @author Serafim <[email protected]> |
|
7 | + * @date 28.03.2016 14:35 |
|
8 | + * |
|
9 | + * For the full copyright and license information, please view the LICENSE |
|
10 | + * file that was distributed with this source code. |
|
11 | + */ |
|
12 | 12 | namespace Domains\Message; |
13 | 13 | |
14 | 14 | use Core\Mappers\Message\UrlMapper; |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | declare(strict_types = 1); |
3 | 3 | /** |
4 | - * This file is part of GitterBot package. |
|
5 | - * |
|
6 | - * @author Serafim <[email protected]> |
|
7 | - * @date 28.03.2016 18:07 |
|
8 | - * |
|
9 | - * For the full copyright and license information, please view the LICENSE |
|
10 | - * file that was distributed with this source code. |
|
11 | - */ |
|
4 | + * This file is part of GitterBot package. |
|
5 | + * |
|
6 | + * @author Serafim <[email protected]> |
|
7 | + * @date 28.03.2016 18:07 |
|
8 | + * |
|
9 | + * For the full copyright and license information, please view the LICENSE |
|
10 | + * file that was distributed with this source code. |
|
11 | + */ |
|
12 | 12 | namespace Domains\Message; |
13 | 13 | |
14 | 14 | use Core\Mappers\Message\RelationMapper; |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | declare(strict_types = 1); |
3 | 3 | /** |
4 | - * This file is part of GitterBot package. |
|
5 | - * |
|
6 | - * @author Serafim <[email protected]> |
|
7 | - * @date 28.03.2016 14:06 |
|
8 | - * |
|
9 | - * For the full copyright and license information, please view the LICENSE |
|
10 | - * file that was distributed with this source code. |
|
11 | - */ |
|
4 | + * This file is part of GitterBot package. |
|
5 | + * |
|
6 | + * @author Serafim <[email protected]> |
|
7 | + * @date 28.03.2016 14:06 |
|
8 | + * |
|
9 | + * For the full copyright and license information, please view the LICENSE |
|
10 | + * file that was distributed with this source code. |
|
11 | + */ |
|
12 | 12 | namespace Domains\Message; |
13 | 13 | |
14 | 14 | use Carbon\Carbon; |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | declare(strict_types = 1); |
3 | 3 | /** |
4 | - * This file is part of GitterBot package. |
|
5 | - * |
|
6 | - * @author Serafim <[email protected]> |
|
7 | - * @date 28.03.2016 14:25 |
|
8 | - * |
|
9 | - * For the full copyright and license information, please view the LICENSE |
|
10 | - * file that was distributed with this source code. |
|
11 | - */ |
|
4 | + * This file is part of GitterBot package. |
|
5 | + * |
|
6 | + * @author Serafim <[email protected]> |
|
7 | + * @date 28.03.2016 14:25 |
|
8 | + * |
|
9 | + * For the full copyright and license information, please view the LICENSE |
|
10 | + * file that was distributed with this source code. |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | namespace Domains\User; |
14 | 14 |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | declare(strict_types = 1); |
3 | 3 | /** |
4 | - * This file is part of GitterBot package. |
|
5 | - * |
|
6 | - * @author Serafim <[email protected]> |
|
7 | - * @date 23.03.2016 20:17 |
|
8 | - * |
|
9 | - * For the full copyright and license information, please view the LICENSE |
|
10 | - * file that was distributed with this source code. |
|
11 | - */ |
|
4 | + * This file is part of GitterBot package. |
|
5 | + * |
|
6 | + * @author Serafim <[email protected]> |
|
7 | + * @date 23.03.2016 20:17 |
|
8 | + * |
|
9 | + * For the full copyright and license information, please view the LICENSE |
|
10 | + * file that was distributed with this source code. |
|
11 | + */ |
|
12 | 12 | namespace Domains\User; |
13 | 13 | |
14 | 14 | use Carbon\Carbon; |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | declare(strict_types = 1); |
3 | 3 | /** |
4 | - * This file is part of GitterBot package. |
|
5 | - * |
|
6 | - * @author Serafim <[email protected]> |
|
7 | - * @date 28.03.2016 23:55 |
|
8 | - * |
|
9 | - * For the full copyright and license information, please view the LICENSE |
|
10 | - * file that was distributed with this source code. |
|
11 | - */ |
|
4 | + * This file is part of GitterBot package. |
|
5 | + * |
|
6 | + * @author Serafim <[email protected]> |
|
7 | + * @date 28.03.2016 23:55 |
|
8 | + * |
|
9 | + * For the full copyright and license information, please view the LICENSE |
|
10 | + * file that was distributed with this source code. |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | |
14 | 14 | namespace Domains\Analyser; |