Completed
Push — master ( 5ca491...45db2f )
by Olivier
07:38
created
lib/Extension/ApplicationExtension.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,12 +51,10 @@
 block discarded – undo
51 51
 			if (strpos($method, self::LAZY_GETTER_PREFIX) === 0)
52 52
 			{
53 53
 				$id = substr($method, strlen(self::LAZY_GETTER_PREFIX));
54
-			}
55
-			elseif (strpos($method, self::GETTER_PREFIX) === 0)
54
+			} elseif (strpos($method, self::GETTER_PREFIX) === 0)
56 55
 			{
57 56
 				$id = substr($method, strlen(self::GETTER_PREFIX));
58
-			}
59
-			else
57
+			} else
60 58
 			{
61 59
 				continue;
62 60
 			}
Please login to merge, or discard this patch.