Skip to content

Commit

Permalink
email address updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dstuecken committed Mar 10, 2020
1 parent 836262f commit f9330e9
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"authors": [
{
"name": "dstuecken",
"email": "dstuecken@i-doit.com"
"email": "dstuecken@me.com"
}
],
"autoload": {
Expand Down
4 changes: 2 additions & 2 deletions src/Exceptions/ArithmeticError.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @link http://php.net/manual/en/class.arithmeticerror.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -17,4 +17,4 @@ class ArithmeticError extends Error
{

}
}
}
4 changes: 2 additions & 2 deletions src/Exceptions/AssertionError.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link http://php.net/manual/en/class.assertionerror.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -15,4 +15,4 @@ class AssertionError extends Error
{

}
}
}
4 changes: 2 additions & 2 deletions src/Exceptions/DivisionByZeroError.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link http://php.net/manual/en/class.divisionbyzeroerror.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -15,4 +15,4 @@ class DivisionByZeroError extends Error
{

}
}
}
4 changes: 2 additions & 2 deletions src/Exceptions/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link http://php.net/manual/en/class.error.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -27,4 +27,4 @@ public function __toString()
return $this->getMessage();
}
}
}
}
4 changes: 2 additions & 2 deletions src/Exceptions/ParseError.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @link http://php.net/manual/en/class.parseerror.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -14,4 +14,4 @@ class ParseError extends Error
{

}
}
}
4 changes: 2 additions & 2 deletions src/Exceptions/TypeError.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @link http://php.net/manual/en/class.typeerror.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -18,4 +18,4 @@ class TypeError extends Error
{

}
}
}
4 changes: 2 additions & 2 deletions src/Functions/error_clear_last.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link http://php.net/manual/de/function.error-clear-last.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -17,4 +17,4 @@ function error_clear_last()
@trigger_error('');
restore_error_handler();
}
}
}
4 changes: 2 additions & 2 deletions src/Functions/intdiv.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link http://php.net/manual/de/function.intdiv.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -28,4 +28,4 @@ function intdiv($dividend, $divisor)

return ($dividend - ($dividend % $divisor)) / $divisor;
}
}
}
4 changes: 2 additions & 2 deletions src/Functions/preg_replace_callback_array.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link http://php.net/manual/de/function.preg-replace-callback-array.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -28,4 +28,4 @@ function preg_replace_callback_array(array $patterns, $subject, $limit = -1, &$c

return $result;
}
}
}
4 changes: 2 additions & 2 deletions src/IntlChar.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @link http://php.net/manual/de/class.intlchar.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand Down Expand Up @@ -1655,4 +1655,4 @@ public static function toupper($codepoint)
{
}
}
}
}
4 changes: 2 additions & 2 deletions src/Php7/Compatibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Php7 compatibility checks for php 5.x projects
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand All @@ -27,4 +27,4 @@ public static function isPhp7()
return PHP_MAJOR_VERSION >= 7;
}

}
}
4 changes: 2 additions & 2 deletions src/Throwable.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @link http://php.net/manual/en/class.throwable.php
*
* @package dstuecken\php7ify
* @author Dennis Stücken <dstuecken@i-doit.com>
* @author Dennis Stücken <dstuecken@me.com>
*
* @since 7.0
*/
Expand Down Expand Up @@ -95,4 +95,4 @@ public function getPrevious();
*/
public function __toString();
}
}
}

0 comments on commit f9330e9

Please # to comment.