mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
CakeSchema updated for 2.0
Converting var to public. Fixes #2276 Signed-off-by: mark_story <mark@mark-story.com>
This commit is contained in:
parent
02efc24b12
commit
58a2ee064c
1 changed files with 7 additions and 7 deletions
|
@ -351,21 +351,21 @@ class CakeSchema extends Object {
|
|||
get_object_vars($this), $options
|
||||
));
|
||||
|
||||
$out = "class {$name}Schema extends CakeSchema {\n";
|
||||
$out = "class {$name}Schema extends CakeSchema {\n\n";
|
||||
|
||||
if ($path !== $this->path) {
|
||||
$out .= "\tvar \$path = '{$path}';\n\n";
|
||||
$out .= "\tpublic \$path = '{$path}';\n\n";
|
||||
}
|
||||
|
||||
if ($file !== $this->file) {
|
||||
$out .= "\tvar \$file = '{$file}';\n\n";
|
||||
$out .= "\tpublic \$file = '{$file}';\n\n";
|
||||
}
|
||||
|
||||
if ($connection !== 'default') {
|
||||
$out .= "\tvar \$connection = '{$connection}';\n\n";
|
||||
$out .= "\tpublic \$connection = '{$connection}';\n\n";
|
||||
}
|
||||
|
||||
$out .= "\tfunction before(\$event = array()) {\n\t\treturn true;\n\t}\n\n\tfunction after(\$event = array()) {\n\t}\n\n";
|
||||
$out .= "\tpublic function before(\$event = array()) {\n\t\treturn true;\n\t}\n\n\tpublic function after(\$event = array()) {\n\t}\n\n";
|
||||
|
||||
if (empty($tables)) {
|
||||
$this->read();
|
||||
|
@ -379,7 +379,7 @@ class CakeSchema extends Object {
|
|||
$out .= "}\n";
|
||||
|
||||
$file = new SplFileObject($path . DS . $file, 'w+');
|
||||
$content = "<?php \n/* {$name} schema generated on: " . date('Y-m-d H:i:s') . " : ". time() . "*/\n{$out}?>";
|
||||
$content = "<?php \n/* generated on: " . date('Y-m-d H:i:s') . " : ". time() . " */\n{$out}";
|
||||
if ($file->fwrite($content)) {
|
||||
return $content;
|
||||
}
|
||||
|
@ -395,7 +395,7 @@ class CakeSchema extends Object {
|
|||
* @return string Variable declaration for a schema class
|
||||
*/
|
||||
public function generateTable($table, $fields) {
|
||||
$out = "\tvar \${$table} = array(\n";
|
||||
$out = "\tpublic \${$table} = array(\n";
|
||||
if (is_array($fields)) {
|
||||
$cols = array();
|
||||
foreach ($fields as $field => $value) {
|
||||
|
|
Loading…
Reference in a new issue