@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | $file_patterns = [ |
5 | 5 | 'app/bootstrap.php', |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | // [0] => token type constant |
34 | 34 | // [1] => raw sytax parsed to that token |
35 | 35 | // [2] => line number |
36 | - foreach($tokens as $token) |
|
36 | + foreach ($tokens as $token) |
|
37 | 37 | { |
38 | 38 | // Since we only care about opening docblocks, |
39 | 39 | // bail out when we get to the namespace token |
@@ -48,7 +48,7 @@ |
||
48 | 48 | /** |
49 | 49 | * Constructor |
50 | 50 | * |
51 | - * @param ContainerInterface $container |
|
51 | + * @param \Aviat\Ion\Di\ContainerInterface $container |
|
52 | 52 | */ |
53 | 53 | public function __construct(ContainerInterface $container) |
54 | 54 | { |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * Create a list item |
28 | 28 | * |
29 | 29 | * @param array $data - |
30 | - * @return bool |
|
30 | + * @return Request |
|
31 | 31 | */ |
32 | 32 | public function create(array $data): Request; |
33 | 33 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * |
45 | 45 | * @param string $id - The id of the list item to update |
46 | 46 | * @param array $data - The data with which to update the list item |
47 | - * @return Response |
|
47 | + * @return Request |
|
48 | 48 | */ |
49 | 49 | public function update(string $id, array $data): Request; |
50 | 50 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * Delete a list item |
53 | 53 | * |
54 | 54 | * @param string $id - The id of the list item to delete |
55 | - * @return bool |
|
55 | + * @return Request |
|
56 | 56 | */ |
57 | 57 | public function delete(string $id): Request; |
58 | 58 | } |
59 | 59 | \ No newline at end of file |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /** |
3 | 3 | * Anime List Client |
4 | 4 | * |