Skip to content

Commit 15440d5

Browse files
authored
Merge pull request #654 from Ocramius/2.10.x-merge-up-into-2.11.x_5fec8fce435468.86689243
Merge release 2.10.1 into 2.11.x
2 parents 931477b + 8e85357 commit 15440d5

File tree

21 files changed

+273
-65
lines changed

21 files changed

+273
-65
lines changed

infection.json.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"branch": "master"
1111
}
1212
},
13-
"minMsi": 84,
13+
"minMsi": 84.5,
1414
"minCoveredMsi": 86
1515
}

src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGet.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ public function __construct(
3838
'name',
3939
null,
4040
null,
41-
'returnValue'
41+
'returnValue',
42+
$originalClass
4243
);
4344
}
4445

src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIsset.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ public function __construct(
3838
'name',
3939
null,
4040
null,
41-
'returnValue'
41+
'returnValue',
42+
$originalClass
4243
);
4344
}
4445

src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSet.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public function __construct(
4242
'name',
4343
'value',
4444
null,
45-
'returnValue'
45+
'returnValue',
46+
$originalClass
4647
);
4748
}
4849

src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnset.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ public function __construct(
3838
'name',
3939
null,
4040
null,
41-
'returnValue'
41+
'returnValue',
42+
$originalClass
4243
);
4344
}
4445

src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGet.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ public function __construct(
3939
$callParent = PublicScopeSimulator::getPublicAccessSimulationCode(
4040
PublicScopeSimulator::OPERATION_GET,
4141
'name',
42-
'value',
42+
null,
4343
$valueHolder,
44-
'returnValue'
44+
'returnValue',
45+
$originalClass
4546
);
4647

4748
if (! $publicProperties->isEmpty()) {

src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIsset.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ public function __construct(
3939
$callParent = PublicScopeSimulator::getPublicAccessSimulationCode(
4040
PublicScopeSimulator::OPERATION_ISSET,
4141
'name',
42-
'value',
42+
null,
4343
$valueHolder,
44-
'returnValue'
44+
'returnValue',
45+
$originalClass
4546
);
4647

4748
if (! $publicProperties->isEmpty()) {

src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSet.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public function __construct(
4545
'name',
4646
'value',
4747
$valueHolder,
48-
'returnValue'
48+
'returnValue',
49+
$originalClass
4950
);
5051

5152
if (! $publicProperties->isEmpty()) {

src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnset.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ public function __construct(
3939
$callParent = PublicScopeSimulator::getPublicAccessSimulationCode(
4040
PublicScopeSimulator::OPERATION_UNSET,
4141
'name',
42-
'value',
42+
null,
4343
$valueHolder,
44-
'returnValue'
44+
'returnValue',
45+
$originalClass
4546
);
4647

4748
if (! $publicProperties->isEmpty()) {

src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ public function __construct(
5555
PublicScopeSimulator::OPERATION_GET,
5656
'name',
5757
null,
58-
$valueHolderProperty
58+
$valueHolderProperty,
59+
null,
60+
$originalClass
5961
)
6062
);
6163
}

0 commit comments

Comments
 (0)