Completed
Push — test ( 4c3fb0...7ef183 )
by Temitope
09:57 queued 07:24
created
src/Exceptions/NullArgumentPassedToFunctionException.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 class NullArgumentPassedToFunction extends Exception {
14 14
 
15
-    public static function ckeckNullArgumentPassedToFunction($message)
16
-    {
17
-    	return new static ($message);
18
-    }
15
+	public static function ckeckNullArgumentPassedToFunction($message)
16
+	{
17
+		return new static ($message);
18
+	}
19 19
 
20 20
 }
Please login to merge, or discard this patch.
src/Exceptions/WrongArgumentException.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 class WrongArgumentException extends Exception {
14 14
 
15
-    public function checkWrongArgumentException($message)
16
-    {
17
-    	return new static ($message);
18
-    }
15
+	public function checkWrongArgumentException($message)
16
+	{
17
+		return new static ($message);
18
+	}
19 19
 
20 20
 }
Please login to merge, or discard this patch.
src/Interface/InterfaceBaseClass.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
 
11 11
 interface InterfaceBaseClass {
12 12
 
13
-    /**
14
-     * This method gets all the record from a particular table
15
-     * @params void
16
-     * @return associative array
17
-     */
13
+	/**
14
+	 * This method gets all the record from a particular table
15
+	 * @params void
16
+	 * @return associative array
17
+	 */
18 18
    public static function getAll();
19 19
    
20 20
    /**
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     * @params int $id
30 30
     * @return boolean true or false
31 31
     */
32
-     public static function destroy($id);
32
+	 public static function destroy($id);
33 33
      
34 34
    /**
35 35
     * This method find a record by id
Please login to merge, or discard this patch.