Skip to content

Commit

Permalink
Fix build proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
Smeagolworms4 committed Apr 3, 2022
1 parent 6f5a8a7 commit 9de515a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/ManyToManySetterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ProxyPost extends Post implements \Doctrine\Persistence\Proxy {
public function __load() {}
public function __isInitialized() {}
}
}
} else
if (interface_exists('Doctrine\Common\Persistence\Proxy')) {
class ProxyPost extends Post implements \Doctrine\Common\Persistence\Proxy {
public function __load() {}
Expand Down Expand Up @@ -64,7 +64,7 @@ class ProxyTag extends Tag implements \Doctrine\Persistence\Proxy {
public function __load() {}
public function __isInitialized() {}
}
}
} else
if (interface_exists ('Doctrine\Common\Persistence\Proxy')) {
class ProxyTag extends Tag implements \Doctrine\Common\Persistence\Proxy {
public function __load() {}
Expand Down
2 changes: 1 addition & 1 deletion tests/ManyToOneSetterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ProxyAddress extends Address implements \Doctrine\Persistence\Proxy {
public function __load() {}
public function __isInitialized() {}
}
}
} else
if (interface_exists ('Doctrine\Common\Persistence\Proxy')) {
class ProxyAddress extends Address implements \Doctrine\Common\Persistence\Proxy {
public function __load() {}
Expand Down
2 changes: 1 addition & 1 deletion tests/OneToManySetterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ProxyCountry2 extends Country2 implements \Doctrine\Persistence\Proxy {
public function __load() {}
public function __isInitialized() {}
}
}
} else
if (interface_exists ('Doctrine\Common\Persistence\Proxy')) {
class ProxyCountry2 extends Country2 implements \Doctrine\Common\Persistence\Proxy {
public function __load() {}
Expand Down
2 changes: 1 addition & 1 deletion tests/OneToOneSetterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ProxyAddress3 extends Address3 implements \Doctrine\Persistence\Proxy {
public function __load() {}
public function __isInitialized() {}
}
}
} else
if (interface_exists ('Doctrine\Common\Persistence\Proxy')) {
class ProxyAddress3 extends Address3 implements \Doctrine\Common\Persistence\Proxy {
public function __load() {}
Expand Down

0 comments on commit 9de515a

Please sign in to comment.