Completed
Push — master ( fcaa61...28acdb )
by Sam
24s queued 14s
created
src/cli/Database/Subscription.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 		// Check if the service string contains /$mux/
29 29
 		foreach ($availableMuxes as $mux)
30 30
 		{
31
-			if (strpos($service, '/' . $mux->name . '/') !== false)
31
+			if (strpos($service, '/'.$mux->name.'/') !== false)
32 32
 			{
33 33
 				return $mux->name;
34 34
 			}
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 		// Check if the service string contains /$network/
52 52
 		foreach ($availableNetworks as $network)
53 53
 		{
54
-			if (strpos($service, '/' . $network->networkname . '/') !== false)
54
+			if (strpos($service, '/'.$network->networkname.'/') !== false)
55 55
 			{
56 56
 				return $network->networkname;
57 57
 			}
Please login to merge, or discard this patch.