File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11<?php
22namespace Foo ;
33
4- class CoveredParentClass
4+ class CoveredNamespaceParentClass
55{
66 private function privateMethod ()
77 {
@@ -18,7 +18,7 @@ public function publicMethod()
1818 }
1919}
2020
21- class CoveredClass extends CoveredParentClass
21+ class CoveredNamespaceClass extends CoveredNamespaceParentClass
2222{
2323 private function privateMethod ()
2424 {
Original file line number Diff line number Diff line change 22namespace bar \baz ;
33
44/**
5- * Represents foo .
5+ * Represents foo_with_namespace .
66 */
7- class Foo
7+ class foo_with_namespace
88{
99}
1010
1111/**
1212 * @param mixed $bar
1313 */
14- function &foo ($ bar )
14+ function &foo_with_namespace ($ bar )
1515{
1616 $ baz = function () {};
1717 $ a = TRUE ? TRUE : FALSE ;
Original file line number Diff line number Diff line change 11<?php
22/**
3- * Represents foo .
3+ * Represents foo_without_namespace .
44 */
5- class Foo
5+ class foo_without_namespace
66{
77}
88
99/**
1010 * @param mixed $bar
1111 */
12- function &foo ($ bar )
12+ function &foo_without_namespace ($ bar )
1313{
1414 $ baz = function () {};
1515 $ a = TRUE ? TRUE : FALSE ;
You can’t perform that action at this time.
0 commit comments