Fix coding style with PHP-CS-Fixer

This commit is contained in:
Giuseppe Criscione 2019-02-16 01:07:10 +01:00
parent 8b569da8f5
commit 71ce3d188d
4 changed files with 0 additions and 7 deletions

View File

@ -39,7 +39,6 @@ trait AdminTrait
/**
* Return the URI of a page
*
*
* @return string
*/
protected function pageUri(Page $page)

View File

@ -326,7 +326,6 @@ class Pages extends AbstractController
/**
* Update a page
*
*
* @return Page
*/
protected function updatePage(Page $page, DataGetter $data, Fields $fields)

View File

@ -94,7 +94,6 @@ class Fields extends Collection
/**
* Validate fields against data
*
*
* @return $this
*/
public function validate(DataGetter $data)

View File

@ -88,7 +88,6 @@ class User extends DataGetter
/**
* Return whether the user can delete a given user
*
*
* @return bool
*/
public function canDeleteUser(User $user)
@ -99,7 +98,6 @@ class User extends DataGetter
/**
* Return whether the user can change options of a given user
*
*
* @return bool
*/
public function canChangeOptionsOf(User $user)
@ -110,7 +108,6 @@ class User extends DataGetter
/**
* Return whether the user can change the password of a given user
*
*
* @return bool
*/
public function canChangePasswordOf(User $user)
@ -121,7 +118,6 @@ class User extends DataGetter
/**
* Return whether the user can change the role of a given user
*
*
* @return bool
*/
public function canChangeRoleOf(User $user)