@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Ion |
|
4 | - * |
|
5 | - * Building blocks for web development |
|
6 | - * |
|
7 | - * @package Ion |
|
8 | - * @author Timothy J. Warren |
|
9 | - * @copyright Copyright (c) 2015 |
|
10 | - * @license MIT |
|
11 | - */ |
|
3 | + * Ion |
|
4 | + * |
|
5 | + * Building blocks for web development |
|
6 | + * |
|
7 | + * @package Ion |
|
8 | + * @author Timothy J. Warren |
|
9 | + * @copyright Copyright (c) 2015 |
|
10 | + * @license MIT |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | namespace Aviat\Ion\View; |
14 | 14 |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Ion |
|
4 | - * |
|
5 | - * Building blocks for web development |
|
6 | - * |
|
7 | - * @package Ion |
|
8 | - * @author Timothy J. Warren |
|
9 | - * @copyright Copyright (c) 2015 |
|
10 | - * @license MIT |
|
11 | - */ |
|
3 | + * Ion |
|
4 | + * |
|
5 | + * Building blocks for web development |
|
6 | + * |
|
7 | + * @package Ion |
|
8 | + * @author Timothy J. Warren |
|
9 | + * @copyright Copyright (c) 2015 |
|
10 | + * @license MIT |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | namespace Aviat\Ion\View; |
14 | 14 |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Ion |
|
4 | - * |
|
5 | - * Building blocks for web development |
|
6 | - * |
|
7 | - * @package Ion |
|
8 | - * @author Timothy J. Warren |
|
9 | - * @copyright Copyright (c) 2015 |
|
10 | - * @license MIT |
|
11 | - */ |
|
3 | + * Ion |
|
4 | + * |
|
5 | + * Building blocks for web development |
|
6 | + * |
|
7 | + * @package Ion |
|
8 | + * @author Timothy J. Warren |
|
9 | + * @copyright Copyright (c) 2015 |
|
10 | + * @license MIT |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | namespace Aviat\Ion\View; |
14 | 14 |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Ion |
|
4 | - * |
|
5 | - * Building blocks for web development |
|
6 | - * |
|
7 | - * @package Ion |
|
8 | - * @author Timothy J. Warren |
|
9 | - * @copyright Copyright (c) 2015 |
|
10 | - * @license MIT |
|
11 | - */ |
|
3 | + * Ion |
|
4 | + * |
|
5 | + * Building blocks for web development |
|
6 | + * |
|
7 | + * @package Ion |
|
8 | + * @author Timothy J. Warren |
|
9 | + * @copyright Copyright (c) 2015 |
|
10 | + * @license MIT |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | namespace Aviat\Ion\View; |
14 | 14 |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function transform($item) |
31 | 31 | { |
32 | - $anime =& $item['anime']; |
|
32 | + $anime = & $item['anime']; |
|
33 | 33 | $genres = $this->linearize_genres($item['anime']['genres']); |
34 | 34 | |
35 | 35 | $rating = NULL; |
@@ -82,10 +82,10 @@ discard block |
||
82 | 82 | 'id' => $item['id'], |
83 | 83 | 'watching_status' => $item['status'], |
84 | 84 | 'notes' => $item['notes'], |
85 | - 'rewatching' => (bool) $item['rewatching'], |
|
85 | + 'rewatching' => (bool)$item['rewatching'], |
|
86 | 86 | 'rewatched' => $item['rewatched_times'], |
87 | 87 | 'user_rating' => $rating, |
88 | - 'private' => (bool) $item['private'], |
|
88 | + 'private' => (bool)$item['private'], |
|
89 | 89 | ]; |
90 | 90 | } |
91 | 91 |