| 1 | <?php |
||
| 7 | abstract class AbstractSchema implements BaseSchemaInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $namespace; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param array $options |
||
| 16 | * @param string $steps |
||
| 17 | * @param int $default |
||
| 18 | * |
||
| 19 | * @return int |
||
| 20 | */ |
||
| 21 | protected function getDefaultOptionValue(array $options, $steps, $default = 0) |
||
| 36 | } |
||
| 37 |