1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace Doctrine\Tests\ORM\Functional\Ticket; |
6
|
|
|
|
7
|
|
|
use Doctrine\ORM\LazyCriteriaCollection; |
8
|
|
|
use Doctrine\Tests\Models\Tweet\Tweet; |
9
|
|
|
use Doctrine\Tests\Models\Tweet\User; |
|
|
|
|
10
|
|
|
use Doctrine\Tests\OrmFunctionalTestCase; |
11
|
|
|
use Doctrine\Common\Collections\Criteria; |
|
|
|
|
12
|
|
|
|
13
|
|
|
class DDC3740Test extends OrmFunctionalTestCase |
14
|
|
|
{ |
15
|
|
|
/** @var Criteria */ |
16
|
|
|
private $criteria; |
17
|
|
|
|
18
|
|
|
/** @var LazyCriteriaCollection */ |
19
|
|
|
private $lazyCriteriaCollection; |
20
|
|
|
|
21
|
|
|
protected function setUp(): void |
|
|
|
|
22
|
|
|
{ |
23
|
|
|
$this->useModelSet('tweet'); |
24
|
|
|
parent::setUp(); |
25
|
|
|
|
26
|
|
|
$this->criteria = new Criteria(); |
|
|
|
|
27
|
|
|
$this->lazyCriteriaCollection = new LazyCriteriaCollection( |
28
|
|
|
$this->em->getUnitOfWork()->getEntityPersister(Tweet::class), |
29
|
|
|
$this->criteria |
30
|
|
|
); |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
public function testCountIsCached() : void |
34
|
|
|
{ |
35
|
|
|
$user = new User(); |
|
|
|
|
36
|
|
|
$user->name = "Caio"; |
37
|
|
|
|
38
|
|
|
$tweet = new Tweet(); |
|
|
|
|
39
|
|
|
$tweet->content = 'I am a teapot!'; |
40
|
|
|
|
41
|
|
|
$user->addTweet($tweet); |
42
|
|
|
|
43
|
|
|
$this->em->persist($user); |
44
|
|
|
$this->em->persist($tweet); |
45
|
|
|
$this->em->flush(); |
46
|
|
|
$this->em->clear(); |
47
|
|
|
|
48
|
|
|
self::assertSame(1, $this->lazyCriteriaCollection->count()); |
49
|
|
|
self::assertSame(1, $this->lazyCriteriaCollection->count()); |
50
|
|
|
self::assertSame(1, $this->lazyCriteriaCollection->count()); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
public function testCountIsCachedEvenWithZeroResult() : void |
54
|
|
|
{ |
55
|
|
|
self::assertSame(0, $this->lazyCriteriaCollection->count()); |
56
|
|
|
self::assertSame(0, $this->lazyCriteriaCollection->count()); |
57
|
|
|
self::assertSame(0, $this->lazyCriteriaCollection->count()); |
58
|
|
|
} |
59
|
|
|
} |
60
|
|
|
|
Let?s assume that you have a directory layout like this:
and let?s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: