@@ -55,7 +55,7 @@ |
||
| 55 | 55 | /** |
| 56 | 56 | * 获取当前用户的未读消息数. |
| 57 | 57 | * |
| 58 | - * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response |
|
| 58 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 59 | 59 | */ |
| 60 | 60 | public function unreadMessagesCount() |
| 61 | 61 | { |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | * |
| 261 | 261 | * @param $topic_id |
| 262 | 262 | * |
| 263 | - * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response |
|
| 263 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 264 | 264 | */ |
| 265 | 265 | public function favorite($topic_id) |
| 266 | 266 | { |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | * |
| 281 | 281 | * @param $topic_id |
| 282 | 282 | * |
| 283 | - * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response |
|
| 283 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 284 | 284 | */ |
| 285 | 285 | public function unFavorite($topic_id) |
| 286 | 286 | { |
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | * |
| 301 | 301 | * @param $topic_id |
| 302 | 302 | * |
| 303 | - * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response |
|
| 303 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 304 | 304 | */ |
| 305 | 305 | public function attention($topic_id) |
| 306 | 306 | { |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | * |
| 321 | 321 | * @param $topic_id |
| 322 | 322 | * |
| 323 | - * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response |
|
| 323 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 324 | 324 | */ |
| 325 | 325 | public function unAttention($topic_id) |
| 326 | 326 | { |
@@ -165,7 +165,7 @@ |
||
| 165 | 165 | * 获取 UserId. |
| 166 | 166 | * |
| 167 | 167 | * @param $request |
| 168 | - * @param $verifier |
|
| 168 | + * @param callable $verifier |
|
| 169 | 169 | * |
| 170 | 170 | * @return int |
| 171 | 171 | */ |
@@ -322,7 +322,7 @@ |
||
| 322 | 322 | /** |
| 323 | 323 | * 通过 attentions 或 favorites 查找帖子. |
| 324 | 324 | * |
| 325 | - * @param $table |
|
| 325 | + * @param string $table |
|
| 326 | 326 | * @param $user_id |
| 327 | 327 | * @param $columns |
| 328 | 328 | * |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | /** |
| 239 | 239 | * 设置这个引入项目是否是嵌套的. |
| 240 | 240 | * |
| 241 | - * @param $parent string 父引入项名 |
|
| 241 | + * @param string $parent string 父引入项名 |
|
| 242 | 242 | * |
| 243 | 243 | * @return $this |
| 244 | 244 | */ |
@@ -285,7 +285,7 @@ discard block |
||
| 285 | 285 | /** |
| 286 | 286 | * 获取一个新的自身的实例. |
| 287 | 287 | * |
| 288 | - * @param $name |
|
| 288 | + * @param string $name |
|
| 289 | 289 | * |
| 290 | 290 | * @return Includable |
| 291 | 291 | */ |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | /** |
| 318 | 318 | * 添加一个子引入项目. |
| 319 | 319 | * |
| 320 | - * @param mixed $children |
|
| 320 | + * @param Includable $children |
|
| 321 | 321 | */ |
| 322 | 322 | public function addChildren(Includable $children) |
| 323 | 323 | { |
@@ -22,8 +22,8 @@ |
||
| 22 | 22 | public function register() |
| 23 | 23 | { |
| 24 | 24 | $this->app->singleton('auto-correct', function () { |
| 25 | - return new AutoCorrect(); |
|
| 26 | - }); |
|
| 25 | + return new AutoCorrect(); |
|
| 26 | + }); |
|
| 27 | 27 | |
| 28 | 28 | $this->app->singleton('markdown', function () { |
| 29 | 29 | return new Parsedown(); |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Created by PhpStorm. |
|
| 4 | - * User: xuan |
|
| 5 | - * Date: 12/3/15 |
|
| 6 | - * Time: 7:12 PM. |
|
| 7 | - */ |
|
| 3 | + * Created by PhpStorm. |
|
| 4 | + * User: xuan |
|
| 5 | + * Date: 12/3/15 |
|
| 6 | + * Time: 7:12 PM. |
|
| 7 | + */ |
|
| 8 | 8 | namespace PHPHub\Transformers; |
| 9 | 9 | |
| 10 | 10 | use Illuminate\Database\Eloquent\Model; |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Created by PhpStorm. |
|
| 4 | - * User: xuan |
|
| 5 | - * Date: 10/23/15 |
|
| 6 | - * Time: 10:39 AM. |
|
| 7 | - */ |
|
| 3 | + * Created by PhpStorm. |
|
| 4 | + * User: xuan |
|
| 5 | + * Date: 10/23/15 |
|
| 6 | + * Time: 10:39 AM. |
|
| 7 | + */ |
|
| 8 | 8 | namespace PHPHub\Repositories\Criteria; |
| 9 | 9 | |
| 10 | 10 | use Input; |