Format code using php-cs-fixer
This commit is contained in:
parent
43d7dc92cd
commit
d52c6184b9
352 changed files with 17473 additions and 17041 deletions
|
@ -2,21 +2,21 @@
|
|||
|
||||
class Application_Form_EditHistoryFile extends Application_Form_EditHistory
|
||||
{
|
||||
const ID_PREFIX = "his_file_";
|
||||
|
||||
public function init() {
|
||||
|
||||
parent::init();
|
||||
public const ID_PREFIX = 'his_file_';
|
||||
|
||||
$this->setDecorators(
|
||||
array(
|
||||
array('ViewScript', array('viewScript' => 'form/edit-history-file.phtml'))
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
public function createFromTemplate($template, $required) {
|
||||
|
||||
parent::createFromTemplate($template, $required);
|
||||
}
|
||||
}
|
||||
public function init()
|
||||
{
|
||||
parent::init();
|
||||
|
||||
$this->setDecorators(
|
||||
[
|
||||
['ViewScript', ['viewScript' => 'form/edit-history-file.phtml']],
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function createFromTemplate($template, $required)
|
||||
{
|
||||
parent::createFromTemplate($template, $required);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue