1 | <?php |
||
7 | class DataFixtureRepository extends EntityRepository |
||
8 | { |
||
9 | /** |
||
10 | * @param string $where |
||
11 | * @param array $parameters |
||
12 | * |
||
13 | * @return bool |
||
14 | */ |
||
15 | public function isDataFixtureExists($where, array $parameters = []) |
||
26 | |||
27 | /** |
||
28 | * Update data fixture history |
||
29 | * |
||
30 | * @param array $updateFields assoc array with field names and values that should be updated |
||
31 | * @param string $where condition |
||
32 | * @param array $parameters optional parameters for where condition |
||
33 | */ |
||
34 | public function updateDataFixtureHistory(array $updateFields, $where, array $parameters = []) |
||
46 | } |
||
47 |