diff --git a/composer.json b/composer.json index 49a1f1a..86db191 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "authors": [ { "name": "dstuecken", - "email": "dstuecken@i-doit.com" + "email": "dstuecken@me.com" } ], "autoload": { diff --git a/src/Exceptions/ArithmeticError.php b/src/Exceptions/ArithmeticError.php index a0ab691..e33c4ef 100644 --- a/src/Exceptions/ArithmeticError.php +++ b/src/Exceptions/ArithmeticError.php @@ -7,7 +7,7 @@ * @link http://php.net/manual/en/class.arithmeticerror.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -17,4 +17,4 @@ class ArithmeticError extends Error { } -} \ No newline at end of file +} diff --git a/src/Exceptions/AssertionError.php b/src/Exceptions/AssertionError.php index df80c9e..7997dd0 100644 --- a/src/Exceptions/AssertionError.php +++ b/src/Exceptions/AssertionError.php @@ -5,7 +5,7 @@ * @link http://php.net/manual/en/class.assertionerror.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -15,4 +15,4 @@ class AssertionError extends Error { } -} \ No newline at end of file +} diff --git a/src/Exceptions/DivisionByZeroError.php b/src/Exceptions/DivisionByZeroError.php index 770cd01..9e7fd3f 100644 --- a/src/Exceptions/DivisionByZeroError.php +++ b/src/Exceptions/DivisionByZeroError.php @@ -5,7 +5,7 @@ * @link http://php.net/manual/en/class.divisionbyzeroerror.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -15,4 +15,4 @@ class DivisionByZeroError extends Error { } -} \ No newline at end of file +} diff --git a/src/Exceptions/Error.php b/src/Exceptions/Error.php index 1d6a99e..7b57f17 100644 --- a/src/Exceptions/Error.php +++ b/src/Exceptions/Error.php @@ -5,7 +5,7 @@ * @link http://php.net/manual/en/class.error.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -27,4 +27,4 @@ public function __toString() return $this->getMessage(); } } -} \ No newline at end of file +} diff --git a/src/Exceptions/ParseError.php b/src/Exceptions/ParseError.php index 4562167..c5a2b25 100644 --- a/src/Exceptions/ParseError.php +++ b/src/Exceptions/ParseError.php @@ -4,7 +4,7 @@ * @link http://php.net/manual/en/class.parseerror.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -14,4 +14,4 @@ class ParseError extends Error { } -} \ No newline at end of file +} diff --git a/src/Exceptions/TypeError.php b/src/Exceptions/TypeError.php index 29db054..c543779 100644 --- a/src/Exceptions/TypeError.php +++ b/src/Exceptions/TypeError.php @@ -8,7 +8,7 @@ * @link http://php.net/manual/en/class.typeerror.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -18,4 +18,4 @@ class TypeError extends Error { } -} \ No newline at end of file +} diff --git a/src/Functions/error_clear_last.php b/src/Functions/error_clear_last.php index a9bdb6a..3667917 100644 --- a/src/Functions/error_clear_last.php +++ b/src/Functions/error_clear_last.php @@ -5,7 +5,7 @@ * @link http://php.net/manual/de/function.error-clear-last.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -17,4 +17,4 @@ function error_clear_last() @trigger_error(''); restore_error_handler(); } -} \ No newline at end of file +} diff --git a/src/Functions/intdiv.php b/src/Functions/intdiv.php index 856dcdc..2b8e335 100644 --- a/src/Functions/intdiv.php +++ b/src/Functions/intdiv.php @@ -5,7 +5,7 @@ * @link http://php.net/manual/de/function.intdiv.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -28,4 +28,4 @@ function intdiv($dividend, $divisor) return ($dividend - ($dividend % $divisor)) / $divisor; } -} \ No newline at end of file +} diff --git a/src/Functions/preg_replace_callback_array.php b/src/Functions/preg_replace_callback_array.php index b17ca3a..a613552 100644 --- a/src/Functions/preg_replace_callback_array.php +++ b/src/Functions/preg_replace_callback_array.php @@ -5,7 +5,7 @@ * @link http://php.net/manual/de/function.preg-replace-callback-array.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -28,4 +28,4 @@ function preg_replace_callback_array(array $patterns, $subject, $limit = -1, &$c return $result; } -} \ No newline at end of file +} diff --git a/src/IntlChar.php b/src/IntlChar.php index 10616ab..1ac1844 100644 --- a/src/IntlChar.php +++ b/src/IntlChar.php @@ -6,7 +6,7 @@ * @link http://php.net/manual/de/class.intlchar.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -1655,4 +1655,4 @@ public static function toupper($codepoint) { } } -} \ No newline at end of file +} diff --git a/src/Php7/Compatibility.php b/src/Php7/Compatibility.php index d76cb77..48339e0 100644 --- a/src/Php7/Compatibility.php +++ b/src/Php7/Compatibility.php @@ -5,7 +5,7 @@ * Php7 compatibility checks for php 5.x projects * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -27,4 +27,4 @@ public static function isPhp7() return PHP_MAJOR_VERSION >= 7; } -} \ No newline at end of file +} diff --git a/src/Throwable.php b/src/Throwable.php index 2cc2708..df17900 100644 --- a/src/Throwable.php +++ b/src/Throwable.php @@ -6,7 +6,7 @@ * @link http://php.net/manual/en/class.throwable.php * * @package dstuecken\php7ify - * @author Dennis Stücken + * @author Dennis Stücken * * @since 7.0 */ @@ -95,4 +95,4 @@ public function getPrevious(); */ public function __toString(); } -} \ No newline at end of file +}