Skip to content

Commit 33b3f60

Browse files
committed
Use FQN for ArrayObject inheritance
1 parent f7f76ae commit 33b3f60

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/JsPhpize/Compiler/Helpers/Dot.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function ($base) {
102102
};
103103

104104
if (!class_exists('JsPhpizeDotCarrier')) {
105-
class JsPhpizeDotCarrier extends ArrayObject
105+
class JsPhpizeDotCarrier extends \ArrayObject
106106
{
107107
public function getValue()
108108
{

src/JsPhpize/Compiler/Helpers/Dot.ref.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function (&$base) {
105105
};
106106

107107
if (!class_exists('JsPhpizeDotCarrier')) {
108-
class JsPhpizeDotCarrier extends ArrayObject
108+
class JsPhpizeDotCarrier extends \ArrayObject
109109
{
110110
public function getValue()
111111
{

src/JsPhpize/Compiler/Helpers/DotObject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function ($base) {
9999
};
100100

101101
if (!class_exists('JsPhpizeDotCarrier')) {
102-
class JsPhpizeDotCarrier extends ArrayObject
102+
class JsPhpizeDotCarrier extends \ArrayObject
103103
{
104104
public function getValue()
105105
{

src/JsPhpize/Compiler/Helpers/DotObject.ref.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function (&$base) {
102102
};
103103

104104
if (!class_exists('JsPhpizeDotCarrier')) {
105-
class JsPhpizeDotCarrier extends ArrayObject
105+
class JsPhpizeDotCarrier extends \ArrayObject
106106
{
107107
public function getValue()
108108
{

src/JsPhpize/Compiler/Helpers/DotWithArrayPrototype.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function ($base) {
181181
};
182182

183183
if (!class_exists('JsPhpizeDotCarrier')) {
184-
class JsPhpizeDotCarrier extends ArrayObject
184+
class JsPhpizeDotCarrier extends \ArrayObject
185185
{
186186
public function getValue()
187187
{

src/JsPhpize/Compiler/Helpers/DotWithArrayPrototype.ref.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function (&$base) {
184184
};
185185

186186
if (!class_exists('JsPhpizeDotCarrier')) {
187-
class JsPhpizeDotCarrier extends ArrayObject
187+
class JsPhpizeDotCarrier extends \ArrayObject
188188
{
189189
public function getValue()
190190
{

0 commit comments

Comments
 (0)