Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/code-cleanup' of https://github.com/Maks3w/zf2 i…
Browse files Browse the repository at this point in the history
…nto hotfix/uses-annotations
  • Loading branch information
Show file tree
Hide file tree
Showing 31 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion src/Definition/ClassDefinition.php
Expand Up @@ -160,4 +160,4 @@ public function getMethodParameters($class, $method)
}
return null;
}
}
}
2 changes: 1 addition & 1 deletion src/Definition/PartialMarker.php
Expand Up @@ -5,4 +5,4 @@
interface PartialMarker
{

}
}
2 changes: 1 addition & 1 deletion src/DefinitionList.php
Expand Up @@ -183,4 +183,4 @@ public function getMethodParameters($class, $method)
return array();
}

}
}
2 changes: 1 addition & 1 deletion test/TestAsset/BasicClass.php
Expand Up @@ -5,4 +5,4 @@
class BasicClass
{

}
}
2 changes: 1 addition & 1 deletion test/TestAsset/BasicClassWithParam.php
Expand Up @@ -5,4 +5,4 @@
class BasicClassWithParam
{
public function __construct($foo){}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CallbackClasses/A.php
Expand Up @@ -11,4 +11,4 @@ public static function factory()
}

private function __construct() {}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CircularClasses/A.php
Expand Up @@ -8,4 +8,4 @@ public function __construct(B $b)
{

}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CircularClasses/B.php
Expand Up @@ -5,4 +5,4 @@
class B
{
public function __construct(A $a) {}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CircularClasses/C.php
Expand Up @@ -8,4 +8,4 @@ public function __construct(D $d)
{

}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CircularClasses/D.php
Expand Up @@ -8,4 +8,4 @@ public function __construct(E $e)
{

}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CircularClasses/E.php
Expand Up @@ -8,4 +8,4 @@ public function __construct(C $c)
{

}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CompilerClasses/A.php
Expand Up @@ -4,4 +4,4 @@

class A
{
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CompilerClasses/B.php
Expand Up @@ -8,4 +8,4 @@ public function __construct(B $b)
{

}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CompilerClasses/C.php
Expand Up @@ -8,4 +8,4 @@ public function setB(B $b)
{

}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CompilerClasses/D.php
Expand Up @@ -5,4 +5,4 @@
class D extends C
{

}
}
2 changes: 1 addition & 1 deletion test/TestAsset/CompilerClasses/E.php
Expand Up @@ -5,4 +5,4 @@
class E extends D
{

}
}
2 changes: 1 addition & 1 deletion test/TestAsset/ConstructorInjection/A.php
Expand Up @@ -4,4 +4,4 @@

class A
{
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/ConstructorInjection/B.php
Expand Up @@ -9,4 +9,4 @@ public function __construct(A $a)
{
$this->a = $a;
}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/ConstructorInjection/X.php
Expand Up @@ -11,4 +11,4 @@ public function __construct($one, $two)
$this->one = $one;
$this->two = $two;
}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/ConstructorInjection/Y.php
Expand Up @@ -9,4 +9,4 @@ public function __construct(X $x)
{
$this->x = $x;
}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/ConstructorInjection/Z.php
Expand Up @@ -9,4 +9,4 @@ public function __construct(Y $y)
{
$this->y = $y;
}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/PreferredImplClasses/A.php
Expand Up @@ -4,4 +4,4 @@

interface A
{
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/PreferredImplClasses/BofA.php
Expand Up @@ -4,4 +4,4 @@

class BofA implements A
{
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/PreferredImplClasses/C.php
Expand Up @@ -9,4 +9,4 @@ public function setA(A $a)
{
$this->a = $a;
}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/PreferredImplClasses/D.php
Expand Up @@ -5,4 +5,4 @@
class D extends C
{

}
}
2 changes: 1 addition & 1 deletion test/TestAsset/SetterInjection/A.php
Expand Up @@ -4,4 +4,4 @@

class A
{
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/SetterInjection/B.php
Expand Up @@ -9,4 +9,4 @@ public function setA(A $a)
{
$this->a = $a;
}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/SetterInjection/C.php
Expand Up @@ -4,4 +4,4 @@

class C extends B
{
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/SetterInjection/X.php
Expand Up @@ -14,4 +14,4 @@ public function setTwo($two)
{
$this->two = $two;
}
}
}
2 changes: 1 addition & 1 deletion test/TestAsset/SetterInjection/Z.php
Expand Up @@ -9,4 +9,4 @@ public function setY(Y $y)
{
$this->y = $y;
}
}
}
2 changes: 1 addition & 1 deletion test/_files/definition-array.php
Expand Up @@ -64,4 +64,4 @@
array (
),
),
);
);

0 comments on commit be3997d

Please sign in to comment.