Completed
Push — development ( 497072...938a38 )
by Dylan David
01:49
created
Ptypes/Exceptions/InvalidArgument.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class InvalidArgument extends Exception
8 8
 {
9
-    public function __construct($message="Invalid Argument!", $code = 1, Exception $previous = null) 
9
+	public function __construct($message="Invalid Argument!", $code = 1, Exception $previous = null) 
10 10
 	{
11
-        parent::__construct($message, $code, $previous);
12
-    }
11
+		parent::__construct($message, $code, $previous);
12
+	}
13 13
 
14
-    public function __toString() 
14
+	public function __toString() 
15 15
 	{
16
-        return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
-    }
16
+		return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
+	}
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class InvalidArgument extends Exception
8 8
 {
9
-    public function __construct($message="Invalid Argument!", $code = 1, Exception $previous = null) 
9
+    public function __construct($message = "Invalid Argument!", $code = 1, Exception $previous = null) 
10 10
 	{
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class InvalidArgument extends Exception
8 8
 {
9
-    public function __construct($message="Invalid Argument!", $code = 1, Exception $previous = null) 
10
-	{
9
+    public function __construct($message="Invalid Argument!", $code = 1, Exception $previous = null)
10
+    {
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
13 13
 
14
-    public function __toString() 
15
-	{
14
+    public function __toString()
15
+    {
16 16
         return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17 17
     }
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Ptypes/Exceptions/StackUnderflow.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class StackUnderflow extends Exception
8 8
 {
9
-    public function __construct($message="Stack Underflow!", $code = 3, Exception $previous = null) 
9
+	public function __construct($message="Stack Underflow!", $code = 3, Exception $previous = null) 
10 10
 	{
11
-        parent::__construct($message, $code, $previous);
12
-    }
11
+		parent::__construct($message, $code, $previous);
12
+	}
13 13
 
14
-    public function __toString() 
14
+	public function __toString() 
15 15
 	{
16
-        return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
-    }
16
+		return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
+	}
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class StackUnderflow extends Exception
8 8
 {
9
-    public function __construct($message="Stack Underflow!", $code = 3, Exception $previous = null) 
9
+    public function __construct($message = "Stack Underflow!", $code = 3, Exception $previous = null) 
10 10
 	{
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class StackUnderflow extends Exception
8 8
 {
9
-    public function __construct($message="Stack Underflow!", $code = 3, Exception $previous = null) 
10
-	{
9
+    public function __construct($message="Stack Underflow!", $code = 3, Exception $previous = null)
10
+    {
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
13 13
 
14
-    public function __toString() 
15
-	{
14
+    public function __toString()
15
+    {
16 16
         return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17 17
     }
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Ptypes/Exceptions/StackOverflow.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class StackOverflow extends Exception
8 8
 {
9
-    public function __construct($message="Stack Overflow!", $code = 2, Exception $previous = null) 
9
+	public function __construct($message="Stack Overflow!", $code = 2, Exception $previous = null) 
10 10
 	{
11
-        parent::__construct($message, $code, $previous);
12
-    }
11
+		parent::__construct($message, $code, $previous);
12
+	}
13 13
 
14
-    public function __toString() 
14
+	public function __toString() 
15 15
 	{
16
-        return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
-    }
16
+		return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
+	}
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class StackOverflow extends Exception
8 8
 {
9
-    public function __construct($message="Stack Overflow!", $code = 2, Exception $previous = null) 
9
+    public function __construct($message = "Stack Overflow!", $code = 2, Exception $previous = null) 
10 10
 	{
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class StackOverflow extends Exception
8 8
 {
9
-    public function __construct($message="Stack Overflow!", $code = 2, Exception $previous = null) 
10
-	{
9
+    public function __construct($message="Stack Overflow!", $code = 2, Exception $previous = null)
10
+    {
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
13 13
 
14
-    public function __toString() 
15
-	{
14
+    public function __toString()
15
+    {
16 16
         return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17 17
     }
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Ptypes/Exceptions/UnexpectedType.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class UnexpectedType extends Exception
8 8
 {
9
-    public function __construct($message="Unexpected Type given!", $code = 0, Exception $previous = null) 
9
+	public function __construct($message="Unexpected Type given!", $code = 0, Exception $previous = null) 
10 10
 	{
11
-        parent::__construct($message, $code, $previous);
12
-    }
11
+		parent::__construct($message, $code, $previous);
12
+	}
13 13
 
14
-    public function __toString() 
14
+	public function __toString() 
15 15
 	{
16
-        return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
-    }
16
+		return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
+	}
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class UnexpectedType extends Exception
8 8
 {
9
-    public function __construct($message="Unexpected Type given!", $code = 0, Exception $previous = null) 
9
+    public function __construct($message = "Unexpected Type given!", $code = 0, Exception $previous = null) 
10 10
 	{
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class UnexpectedType extends Exception
8 8
 {
9
-    public function __construct($message="Unexpected Type given!", $code = 0, Exception $previous = null) 
10
-	{
9
+    public function __construct($message="Unexpected Type given!", $code = 0, Exception $previous = null)
10
+    {
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
13 13
 
14
-    public function __toString() 
15
-	{
14
+    public function __toString()
15
+    {
16 16
         return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17 17
     }
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Ptypes/Stack.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function __construct($maxsize)
31 31
 	{
32
-		if(gettype($maxsize) != "integer"){throw new UnexpectedType("Expected an integer, got: ".gettype($maxsize));}	
33
-		if($maxsize < 2) {throw new InvalidArgument("Stack has a minimum size of 2!");}
32
+		if (gettype($maxsize) != "integer") {throw new UnexpectedType("Expected an integer, got: " . gettype($maxsize)); }	
33
+		if ($maxsize < 2) {throw new InvalidArgument("Stack has a minimum size of 2!"); }
34 34
 		
35 35
 		$this->maxsize = $maxsize;
36 36
 		$this->items = array();	
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function push($item)
46 46
 	{
47
-		if($this->top == $this->maxsize) {throw new StackOverflow("Pushing this item would overflow the stack (exceed the max stack size)!");}
47
+		if ($this->top == $this->maxsize) {throw new StackOverflow("Pushing this item would overflow the stack (exceed the max stack size)!"); }
48 48
 		$this->items[$this->top++] = $item;
49 49
 		return $this;
50 50
 	}
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 */
55 55
 	public function pop()
56 56
 	{
57
-		if($this->top == 0) {throw new StackUnderflow("Cannot pop an empty stack!");}
57
+		if ($this->top == 0) {throw new StackUnderflow("Cannot pop an empty stack!"); }
58 58
 		unset($this->items[$this->top--]);
59 59
 		return $this;
60 60
 	}
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 */
87 87
 	public function peek()
88 88
 	{
89
-		if($this->top == 0) {return null;}
89
+		if ($this->top == 0) {return null; }
90 90
 		return $this->items[$this->top-1];
91 91
 	}
92 92
 	
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
 	public function __toString()
112 112
 	{
113 113
 		$str = "Stack:\n";
114
-		$str .= ((string)$this->items[$this->top-1])."   <-- top\n";
115
-		for($i = $this->top-2; $i >= 0; $i--)
114
+		$str .= ((string)$this->items[$this->top-1]) . "   <-- top\n";
115
+		for ($i = $this->top-2; $i >= 0; $i--)
116 116
 		{
117
-			$str .= ((string)$this->items[$i])."\n";
117
+			$str .= ((string)$this->items[$i]) . "\n";
118 118
 		}
119 119
 		
120 120
 		return $str;
Please login to merge, or discard this patch.
Braces   +15 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,8 +29,12 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function __construct($maxsize)
31 31
 	{
32
-		if(gettype($maxsize) != "integer"){throw new UnexpectedType("Expected an integer, got: ".gettype($maxsize));}	
33
-		if($maxsize < 2) {throw new InvalidArgument("Stack has a minimum size of 2!");}
32
+		if(gettype($maxsize) != "integer")
33
+		{
34
+throw new UnexpectedType("Expected an integer, got: ".gettype($maxsize));}	
35
+		if($maxsize < 2)
36
+		{
37
+throw new InvalidArgument("Stack has a minimum size of 2!");}
34 38
 		
35 39
 		$this->maxsize = $maxsize;
36 40
 		$this->items = array();	
@@ -44,7 +48,9 @@  discard block
 block discarded – undo
44 48
 	 */
45 49
 	public function push($item)
46 50
 	{
47
-		if($this->top == $this->maxsize) {throw new StackOverflow("Pushing this item would overflow the stack (exceed the max stack size)!");}
51
+		if($this->top == $this->maxsize)
52
+		{
53
+throw new StackOverflow("Pushing this item would overflow the stack (exceed the max stack size)!");}
48 54
 		$this->items[$this->top++] = $item;
49 55
 		return $this;
50 56
 	}
@@ -54,7 +60,9 @@  discard block
 block discarded – undo
54 60
 	 */
55 61
 	public function pop()
56 62
 	{
57
-		if($this->top == 0) {throw new StackUnderflow("Cannot pop an empty stack!");}
63
+		if($this->top == 0)
64
+		{
65
+throw new StackUnderflow("Cannot pop an empty stack!");}
58 66
 		unset($this->items[$this->top--]);
59 67
 		return $this;
60 68
 	}
@@ -86,7 +94,9 @@  discard block
 block discarded – undo
86 94
 	 */
87 95
 	public function peek()
88 96
 	{
89
-		if($this->top == 0) {return null;}
97
+		if($this->top == 0)
98
+		{
99
+return null;}
90 100
 		return $this->items[$this->top-1];
91 101
 	}
92 102
 	
Please login to merge, or discard this patch.
Ptypes/Exceptions/IndexOutOfBounds.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class IndexOutOfBounds extends Exception
8 8
 {
9
-    public function __construct($message="Index is Out Of Bounds!", $code = 4, Exception $previous = null) 
9
+	public function __construct($message="Index is Out Of Bounds!", $code = 4, Exception $previous = null) 
10 10
 	{
11
-        parent::__construct($message, $code, $previous);
12
-    }
11
+		parent::__construct($message, $code, $previous);
12
+	}
13 13
 
14
-    public function __toString() 
14
+	public function __toString() 
15 15
 	{
16
-        return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
-    }
16
+		return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17
+	}
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class IndexOutOfBounds extends Exception
8 8
 {
9
-    public function __construct($message="Index is Out Of Bounds!", $code = 4, Exception $previous = null) 
9
+    public function __construct($message = "Index is Out Of Bounds!", $code = 4, Exception $previous = null) 
10 10
 	{
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class IndexOutOfBounds extends Exception
8 8
 {
9
-    public function __construct($message="Index is Out Of Bounds!", $code = 4, Exception $previous = null) 
10
-	{
9
+    public function __construct($message="Index is Out Of Bounds!", $code = 4, Exception $previous = null)
10
+    {
11 11
         parent::__construct($message, $code, $previous);
12 12
     }
13 13
 
14
-    public function __toString() 
15
-	{
14
+    public function __toString()
15
+    {
16 16
         return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
17 17
     }
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Ptypes/DLNode.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 	 *
16 16
 	 * @param object $data
17 17
 	 */
18
-	public function __construct($data=null) 
18
+	public function __construct($data = null) 
19 19
 	{
20 20
 		$this->data = $data;
21 21
 	}
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 	 *
16 16
 	 * @param object $data
17 17
 	 */
18
-	public function __construct($data=null) 
18
+	public function __construct($data=null)
19 19
 	{
20 20
 		$this->data = $data;
21 21
 	}
Please login to merge, or discard this patch.
Ptypes/DoublyLinkedList.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -23,12 +23,12 @@  discard block
 block discarded – undo
23 23
 	
24 24
 	private function validate_parameter($node)
25 25
 	{
26
-		if(gettype($node) != "object")
26
+		if (gettype($node) != "object")
27 27
 		{
28 28
 			throw new UnexpectedType("Expected a Ptypes\DLNode, got: " . gettype($node));
29 29
 		}
30 30
 		
31
-		if(get_class($node) != "Ptypes\DLNode")
31
+		if (get_class($node) != "Ptypes\DLNode")
32 32
 		{
33 33
 			throw new UnexpectedType("Expected a Ptypes\DLNode, got: " . get_class($node));
34 34
 		}
@@ -230,28 +230,28 @@  discard block
 block discarded – undo
230 230
 	 */
231 231
 	public function get($index)
232 232
 	{
233
-		if(gettype($index) != "integer")
233
+		if (gettype($index) != "integer")
234 234
 		{
235
-			throw new UnexpectedType("Expected an integer, got: ".gettype($index));
235
+			throw new UnexpectedType("Expected an integer, got: " . gettype($index));
236 236
 		}
237 237
 
238
-		if($index < 0 || $index > $this->size-1)
238
+		if ($index < 0 || $index > $this->size-1)
239 239
 		{
240 240
 			throw new IndexOutOfBounds("The given index is out of bounds!");
241 241
 		}
242 242
 
243
-		if($index == 0)
243
+		if ($index == 0)
244 244
 		{
245 245
 			return $this->firstNode;
246 246
 		}
247 247
 
248
-		if($index == $this->size-1)
248
+		if ($index == $this->size-1)
249 249
 		{
250 250
 			return $this->lastNode;
251 251
 		}
252 252
 
253 253
 		$node = $this->firstNode;
254
-		for($i = 1; $i <= $index; $i++)
254
+		for ($i = 1; $i <= $index; $i++)
255 255
 		{
256 256
 			$node = $node->next;
257 257
 		}
Please login to merge, or discard this patch.
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@  discard block
 block discarded – undo
19 19
 
20 20
 	private $size = 0;
21 21
 
22
-	public function __construct() {}
22
+	public function __construct()
23
+	{
24
+}
23 25
 	
24 26
 	private function validate_parameter($node)
25 27
 	{
@@ -98,7 +100,7 @@  discard block
 block discarded – undo
98 100
 	 * @param DLNode $newNode
99 101
 	 */
100 102
 	public function insert_beginning($newNode)
101
-	{	
103
+	{
102 104
 		//type checks
103 105
 		$this->validate_parameter($newNode);
104 106
 
@@ -165,7 +167,7 @@  discard block
 block discarded – undo
165 167
 		$this->validate_parameter($node);
166 168
 		
167 169
 		//check this so we could possibly avoid list traversal
168
-		if ($node == $this->firstNode || $node == $this->lastNode) 
170
+		if ($node == $this->firstNode || $node == $this->lastNode)
169 171
 		{
170 172
 			return true; 
171 173
 		}
@@ -174,7 +176,7 @@  discard block
 block discarded – undo
174 176
 		$n = $this->firstNode->next; //we can start one node ahead as we already checked the firstNode
175 177
 		while ($n != null)
176 178
 		{
177
-			if ($n == $node) 
179
+			if ($n == $node)
178 180
 			{
179 181
 				return true; 
180 182
 			}
@@ -196,8 +198,8 @@  discard block
 block discarded – undo
196 198
 		$this->validate_parameter($node);
197 199
 		
198 200
 		//check if the node exists
199
-		if ($this->contains($node) === false) 
200
-		{ 
201
+		if ($this->contains($node) === false)
202
+		{
201 203
 			throw new InvalidArgument("The node given does not exist in this list!"); 
202 204
 		}
203 205
 
Please login to merge, or discard this patch.