Skip to content

Commit c4bfe5c

Browse files
committed
run cs fixer
1 parent 64626e9 commit c4bfe5c

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

DependencyInjection/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ class Configuration implements ConfigurationInterface
4545
* @access protected
4646
* @var string $defaultValueFormTheme
4747
*/
48-
protected $defaultValueFormTheme = 'form_div_layout.html.twig';
48+
protected $defaultValueFormTheme = 'form_div_layout.html.twig';
4949

5050
/**
5151
*
5252
* @access protected
5353
* @var string $defaultValuePaginatorTheme
5454
*/
55-
protected $defaultValuePaginatorTheme = null;
55+
protected $defaultValuePaginatorTheme = null;
5656

5757
/**
5858
*

Form/Handler/Admin/UpdateAccountFormHandler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ class UpdateAccountFormHandler extends BaseFormHandler
5353
*
5454
* @access public
5555
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
56-
* @param \Symfony\Component\Form\FormFactory $factory
57-
* @param \CCDNUser\AdminBundle\Form\Type\UpdateAccountFormType $updateAccountFormType
58-
* @param \CCDNUser\AdminBundle\Model\FrontModel\ModelInterface $userModel
56+
* @param \Symfony\Component\Form\FormFactory $factory
57+
* @param \CCDNUser\AdminBundle\Form\Type\UpdateAccountFormType $updateAccountFormType
58+
* @param \CCDNUser\AdminBundle\Model\FrontModel\ModelInterface $userModel
5959
*/
6060
public function __construct(EventDispatcherInterface $dispatcher, FormFactory $factory, $updateAccountFormType, ModelInterface $userModel)
6161
{

Form/Handler/Admin/UpdateRolesFormHandler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ class UpdateRolesFormHandler extends BaseFormHandler
6060
*
6161
* @access public
6262
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
63-
* @param \Symfony\Component\Form\FormFactory $factory
64-
* @param \CCDNUser\AdminBundle\Form\Type\UpdateRolesFormType $updateRolesFormType
65-
* @param \CCDNUser\AdminBundle\Model\FrontModel\ModelInterface $userModel
63+
* @param \Symfony\Component\Form\FormFactory $factory
64+
* @param \CCDNUser\AdminBundle\Form\Type\UpdateRolesFormType $updateRolesFormType
65+
* @param \CCDNUser\AdminBundle\Model\FrontModel\ModelInterface $userModel
6666
*/
6767
public function __construct(EventDispatcherInterface $dispatcher, FormFactory $factory, $updateRolesFormType, ModelInterface $userModel)
6868
{

Model/Component/Gateway/BaseGateway.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ public function all(QueryBuilder $qb, $parameters = array())
193193
public function paginateQuery(QueryBuilder $qb, $itemsPerPage, $page)
194194
{
195195
$pager = $this->paginator->paginate($qb, $page, $itemsPerPage);
196-
197-
if ($this->pagerTheme) {
198-
$pager->setTemplate($this->pagerTheme);
199-
}
196+
197+
if ($this->pagerTheme) {
198+
$pager->setTemplate($this->pagerTheme);
199+
}
200200

201201
return $pager;
202202
}

Model/FrontModel/BaseModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ abstract class BaseModel
5555
/**
5656
*
5757
* @access public
58-
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
58+
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
5959
* @param \CCDNUser\AdminBundle\Model\Component\Repository\RepositoryInterface $repository
6060
* @param \CCDNUser\AdminBundle\Model\Component\Manager\ManagerInterface $manager
6161
*/

Model/FrontModel/ModelInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ interface ModelInterface
3434
/**
3535
*
3636
* @access public
37-
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
37+
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
3838
* @param \CCDNUser\AdminBundle\Model\Component\Repository\RepositoryInterface $repository
3939
* @param \CCDNUser\AdminBundle\Model\Component\Manager\ManagerInterface $manager
4040
*/

0 commit comments

Comments
 (0)