123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
-
-
- namespace Doctrine\DBAL\Event;
-
- use Doctrine\Common\EventArgs;
-
-
- class SchemaEventArgs extends EventArgs
- {
-
-
- private $_preventDefault = false;
-
-
-
- public function preventDefault()
- {
- $this->_preventDefault = true;
-
- return $this;
- }
-
-
-
- public function isDefaultPrevented()
- {
- return $this->_preventDefault;
- }
- }
|