| 1 | <?php |
||
| 24 | class FormHelper { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * On post handle request with collection. |
||
| 28 | * |
||
| 29 | * @param Collection $oldCollection The old colection. |
||
| 30 | * @param Collection $newCollection The new collection. |
||
| 31 | * @param ObjectManager $manager The entities manager. |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public static function onPostHandleRequestWithCollection(Collection $oldCollection, Collection $newCollection, ObjectManager $manager) { |
||
| 42 | |||
| 43 | /** |
||
| 44 | * On pre handle request with collection. |
||
| 45 | * |
||
| 46 | * @param Collection $collection The collection. |
||
| 47 | * @return Collection Returns the cloned collection. |
||
| 48 | */ |
||
| 49 | public static function onPreHandleRequestWithCollection(Collection $collection) { |
||
| 56 | |||
| 57 | } |
||
| 58 |