Skip to content

Commit

Permalink
Apply PSR1 no_spaces_inside_parenthesis php cs fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
shakaran committed Sep 17, 2017
1 parent 518a8a8 commit a0fdcac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Command/FetchVendorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
$process->setWorkingDirectory($res);
$process->run(function ($type, $buffer) use ($output, $helper) {
if(Process::ERR == $type) {
$output->write($helper->formatSection('Error', $buffer, 'error' ));
$output->write($helper->formatSection('Error', $buffer, 'error'));
} else {
$output->write($helper->formatSection('Progress', $buffer, 'info' ));
$output->write($helper->formatSection('Progress', $buffer, 'info'));
}
});

Expand Down
2 changes: 1 addition & 1 deletion Controller/DefaultController.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function uiIconsAction() {
}

public function formAction() {
$form =$this->createForm( FormDemoModelType::class );
$form =$this->createForm(FormDemoModelType::class);
return $this->render('AvanzuAdminThemeBundle:Default:form.html.twig', array(
'form' => $form->createView()
));
Expand Down

0 comments on commit a0fdcac

Please sign in to comment.