1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
4
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
5
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
6
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
7
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
8
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
9
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
10
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
11
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
12
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
13
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
14
|
|
|
* |
15
|
|
|
* This software consists of voluntary contributions made by many individuals |
16
|
|
|
* and is licensed under the MIT license. For more information, see |
17
|
|
|
* <http://www.doctrine-project.org>. |
18
|
|
|
*/ |
19
|
|
|
|
20
|
|
|
namespace Doctrine\ORM\Event; |
21
|
|
|
|
22
|
|
|
use Doctrine\Common\EventArgs; |
23
|
|
|
use Doctrine\ORM\EntityManagerInterface; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* Provides event arguments for the preFlush event. |
27
|
|
|
* |
28
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT |
29
|
|
|
* @link www.doctrine-project.com |
30
|
|
|
* @since 2.0 |
31
|
|
|
* @author Roman Borschel <[email protected]> |
32
|
|
|
* @author Benjamin Eberlei <[email protected]> |
33
|
|
|
*/ |
34
|
|
|
class PreFlushEventArgs extends EventArgs |
35
|
|
|
{ |
36
|
|
|
/** |
37
|
|
|
* @var \Doctrine\ORM\EntityManager |
38
|
|
|
*/ |
39
|
|
|
private $em; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Constructor. |
43
|
|
|
* |
44
|
|
|
* @param EntityManagerInterface $em |
45
|
|
|
*/ |
46
|
20 |
|
public function __construct(EntityManagerInterface $em) |
47
|
|
|
{ |
48
|
20 |
|
$this->em = $em; |
|
|
|
|
49
|
20 |
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* @return \Doctrine\ORM\EntityManager |
53
|
|
|
*/ |
54
|
|
|
public function getEntityManager() |
55
|
|
|
{ |
56
|
|
|
return $this->em; |
57
|
|
|
} |
58
|
|
|
} |
59
|
|
|
|
Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a given class or a super-class is assigned to a property that is type hinted more strictly.
Either this assignment is in error or an instanceof check should be added for that assignment.