Completed
Push — master ( 242a70...f8be55 )
by Michael
07:58
created
src/Mvg/Factories/Departures.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * User: ms
4
- * Date: 29.08.15
5
- * Time: 21:15
6
- */
3
+	 * User: ms
4
+	 * Date: 29.08.15
5
+	 * Time: 21:15
6
+	 */
7 7
 namespace Mvg\Factories;
8 8
 
9 9
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 			return $this->departures;
49 49
 		}
50 50
 
51
-		if( true === empty($filter)) {
51
+		if (true === empty($filter)) {
52 52
 			return $this->departures;
53 53
 		}
54 54
 
Please login to merge, or discard this patch.
src/Mvg/RequestHandler/Html/HttpGetDepartures.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * User: ms
4
- * Date: 29.08.15
5
- * Time: 09:35
6
- */
3
+	 * User: ms
4
+	 * Date: 29.08.15
5
+	 * Time: 09:35
6
+	 */
7 7
 namespace Mvg\RequestHandler\Html;
8 8
 
9 9
 use Zend\Http\Client;
Please login to merge, or discard this patch.
src/Mvg/Parser/Html/Departures.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * User: ms
4
- * Date: 29.08.15
5
- * Time: 09:36
6
- */
3
+	 * User: ms
4
+	 * Date: 29.08.15
5
+	 * Time: 09:36
6
+	 */
7 7
 
8 8
 namespace  Mvg\Parser\Html;
9 9
 
Please login to merge, or discard this patch.
src/Mvg/Parser/Html/NewsTicker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 				$stringToAnalyze = trim(str_replace('Linie(n)', '', $item));
68 68
 				$linesString = explode(':', $stringToAnalyze)[0];
69 69
 				$object->affectedLines = explode(',', $linesString);
70
-				array_walk($object->affectedLines, function (&$item) {
70
+				array_walk($object->affectedLines, function(&$item) {
71 71
 					$item = trim($item);
72 72
 				});
73 73
 
Please login to merge, or discard this patch.
src/Mvg/Parser/Html/Stations.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * User: ms
4
- * Date: 29.08.15
5
- * Time: 12:37
6
- */
3
+	 * User: ms
4
+	 * Date: 29.08.15
5
+	 * Time: 12:37
6
+	 */
7 7
 
8 8
 namespace  Mvg\Parser\Html;
9 9
 
Please login to merge, or discard this patch.
src/Mvg/TextOutput/Departures.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * User: ms
4
- * Date: 29.08.15
5
- * Time: 11:00
6
- */
3
+	 * User: ms
4
+	 * Date: 29.08.15
5
+	 * Time: 11:00
6
+	 */
7 7
 
8 8
 namespace Mvg\TextOutput;
9 9
 
Please login to merge, or discard this patch.
examples/interruptions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,5 +11,5 @@
 block discarded – undo
11 11
 
12 12
 $b = new HttpGetInterruptions();
13 13
 
14
-$r  =$b->doRequest();
14
+$r = $b->doRequest();
15 15
 print_r($r);
16 16
\ No newline at end of file
Please login to merge, or discard this patch.