@@ 24-32 (lines=9) @@ | ||
21 | return $this->migrationNameParser->getActionObject() && $this->migrationNameParser->getModel(); |
|
22 | } |
|
23 | ||
24 | public function getInitUp() |
|
25 | { |
|
26 | return $this->isAvailable() |
|
27 | ? sprintf("\$this->create%s('%s');" |
|
28 | , ucfirst($this->migrationNameParser->getActionObject()) |
|
29 | , $this->migrationNameParser->getModel()) |
|
30 | : ''; |
|
31 | ||
32 | } |
|
33 | ||
34 | public function getInitDown() |
|
35 | { |
|
@@ 34-41 (lines=8) @@ | ||
31 | ||
32 | } |
|
33 | ||
34 | public function getInitDown() |
|
35 | { |
|
36 | return $this->isAvailable() |
|
37 | ? sprintf("\$this->drop%s('%s');" |
|
38 | , ucfirst($this->migrationNameParser->getActionObject()) |
|
39 | , $this->migrationNameParser->getModel()) |
|
40 | : ''; |
|
41 | } |
|
42 | } |
|
43 |