Completed
Branch develop (9c1dc5)
by Timothy
07:15
created
build/CodeIgniter/UnusedSniffs/NamingConventions/ValidClassNameSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * Returns an array of tokens this test wants to listen for.
37 37
      *
38
-     * @return array
38
+     * @return integer[]
39 39
      */
40 40
     public function register()
41 41
     {
Please login to merge, or discard this patch.
build/CodeIgniter/UnusedSniffs/NamingConventions/ValidFileNameSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * Returns an array of tokens this test wants to listen for.
37 37
      *
38
-     * @return array
38
+     * @return integer[]
39 39
      */
40 40
     public function register()
41 41
     {
Please login to merge, or discard this patch.
src/Controller.php 1 patch
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.
src/Model/API.php 1 patch
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.
src/API/ListItemInterface.php 1 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.