Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Tests/_files/NamespaceCoveredClass.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace Foo;

class CoveredParentClass
class CoveredNamespaceParentClass
{
private function privateMethod()
{
Expand All @@ -18,7 +18,7 @@ public function publicMethod()
}
}

class CoveredClass extends CoveredParentClass
class CoveredNamespaceClass extends CoveredNamespaceParentClass
{
private function privateMethod()
{
Expand Down
6 changes: 3 additions & 3 deletions Tests/_files/source_with_namespace.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
namespace bar\baz;

/**
* Represents foo.
* Represents foo_with_namespace.
*/
class Foo
class foo_with_namespace
{
}

/**
* @param mixed $bar
*/
function &foo($bar)
function &foo_with_namespace($bar)
{
$baz = function() {};
$a = TRUE ? TRUE : FALSE;
Expand Down
6 changes: 3 additions & 3 deletions Tests/_files/source_without_namespace.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
/**
* Represents foo.
* Represents foo_without_namespace.
*/
class Foo
class foo_without_namespace
{
}

/**
* @param mixed $bar
*/
function &foo($bar)
function &foo_without_namespace($bar)
{
$baz = function() {};
$a = TRUE ? TRUE : FALSE;
Expand Down