Fix coding standards (using PHP Coding Standards Fixer)

This commit is contained in:
Meritoo
2019-04-02 12:03:53 +02:00
parent 7ddfcf6946
commit 1b4577cc8a
5 changed files with 9 additions and 9 deletions

View File

@@ -1506,7 +1506,7 @@ class Arrays
*
* @param array $array The array to verify
* @param mixed $element The element who index / key is needed
* @return bool|null|mixed
* @return bool|mixed|null
*/
public static function getIndexOf(array $array, $element)
{
@@ -1594,7 +1594,7 @@ class Arrays
*
* @param array $array The array with elements
* @param mixed $element Element for who next element should be returned
* @return null|mixed
* @return mixed|null
*/
public static function getNextElement(array $array, $element)
{
@@ -1606,7 +1606,7 @@ class Arrays
*
* @param array $array The array with elements
* @param mixed $element Element for who previous element should be returned
* @return null|mixed
* @return mixed|null
*/
public static function getPreviousElement(array $array, $element)
{