Conditions | 1 |
Paths | 1 |
Total Lines | 28 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | public function testCompleteOriginalData() |
||
11 | { |
||
12 | $this->useModelSet('tweet'); |
||
13 | parent::setUp(); |
||
14 | |||
15 | $tweet1 = new Tweet(); |
||
16 | $tweet1->content = 'foobar'; |
||
17 | |||
18 | $user = new User(); |
||
19 | $user->name = 'Marco'; |
||
20 | $user->addTweet($tweet1); |
||
21 | |||
22 | $this->_em->persist($user); |
||
23 | $this->_em->flush(); |
||
24 | |||
25 | // This should contain all fields now |
||
26 | $originalData1 = $this->_em->getUnitOfWork()->getOriginalEntityData($user); |
||
27 | |||
28 | // Change only one of the non-associating fields |
||
29 | $user->name = 'Polo'; |
||
30 | |||
31 | $this->_em->flush(); |
||
32 | |||
33 | // This should still contain all fields |
||
34 | $originalData2 = $this->_em->getUnitOfWork()->getOriginalEntityData($user); |
||
35 | |||
36 | $this->assertSame(array_keys($originalData1), array_keys($originalData2)); |
||
37 | } |
||
38 | } |
||
39 |
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: