Completed
Branch develop (9c1dc5)
by Timothy
07:15
created
build/update_header_comments.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Model/API.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
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
 	{
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.
src/API/AbstractListItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.
src/API/MAL.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.
src/API/ListItemInterface.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/API/APIRequestBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.
src/API/Kitsu/Transformer/AnimeTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.
src/API/Kitsu/Enum/AnimeAiringStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.
src/API/Kitsu/Enum/AnimeWatchingStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * Anime List Client
4 4
  *
Please login to merge, or discard this patch.