1
0
mirror of synced 2024-12-13 14:56:01 +03:00

Formatting fixes.

This commit is contained in:
jwage 2008-01-23 08:20:38 +00:00
parent 02c57f5977
commit 7a2fec88ed

View File

@ -40,7 +40,7 @@ class Doctrine_Migration_Builder
* *
* @var string * @var string
*/ */
private $migrationsPath = ''; private $_migrationsPath = '';
/** /**
* suffix * suffix
@ -49,16 +49,16 @@ class Doctrine_Migration_Builder
* *
* @var string $suffix * @var string $suffix
*/ */
private $suffix = '.class.php'; private $_suffix = '.class.php';
/** /**
* tpl * tpl
* *
* Class template used for writing classes * Class template used for writing classes
* *
* @var $tpl * @var $_tpl
*/ */
private static $tpl; private static $_tpl;
/** /**
* __construct * __construct
@ -71,7 +71,7 @@ class Doctrine_Migration_Builder
$this->setMigrationsPath($migrationsPath); $this->setMigrationsPath($migrationsPath);
} }
$this->loadTemplate(); $this->_loadTemplate();
} }
/** /**
@ -84,7 +84,7 @@ class Doctrine_Migration_Builder
{ {
Doctrine_Lib::makeDirectories($path); Doctrine_Lib::makeDirectories($path);
$this->migrationsPath = $path; $this->_migrationsPath = $path;
} }
/** /**
@ -94,7 +94,7 @@ class Doctrine_Migration_Builder
*/ */
public function getMigrationsPath() public function getMigrationsPath()
{ {
return $this->migrationsPath; return $this->_migrationsPath;
} }
/** /**
@ -104,13 +104,13 @@ class Doctrine_Migration_Builder
* *
* @return void * @return void
*/ */
protected function loadTemplate() protected function _loadTemplate()
{ {
if (isset(self::$tpl)) { if (isset(self::$_tpl)) {
return; return;
} }
self::$tpl =<<<END self::$_tpl =<<<END
/** /**
* This class has been auto-generated by the Doctrine ORM Framework * This class has been auto-generated by the Doctrine ORM Framework
*/ */
@ -267,7 +267,7 @@ END;
$migration = new Doctrine_Migration($this->getMigrationsPath()); $migration = new Doctrine_Migration($this->getMigrationsPath());
$next = (string) $migration->getNextVersion(); $next = (string) $migration->getNextVersion();
$fileName = str_repeat('0', (3 - strlen($next))) . $next . '_' . Doctrine::tableize($className) . $this->suffix; $fileName = str_repeat('0', (3 - strlen($next))) . $next . '_' . Doctrine::tableize($className) . $this->_suffix;
$class = $this->buildMigrationClass($className, $fileName, $options, $up, $down); $class = $this->buildMigrationClass($className, $fileName, $options, $up, $down);
@ -288,7 +288,7 @@ END;
$content = '<?php' . PHP_EOL; $content = '<?php' . PHP_EOL;
$content .= sprintf(self::$tpl, $className, $content .= sprintf(self::$_tpl, $className,
$extends, $extends,
$up, $up,
$down); $down);