Skip to content

Commit f9330e9

Browse files
committed
email address updated
1 parent 836262f commit f9330e9

13 files changed

+25
-25
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"authors": [
2525
{
2626
"name": "dstuecken",
27-
"email": "dstuecken@i-doit.com"
27+
"email": "dstuecken@me.com"
2828
}
2929
],
3030
"autoload": {

src/Exceptions/ArithmeticError.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @link http://php.net/manual/en/class.arithmeticerror.php
88
*
99
* @package dstuecken\php7ify
10-
* @author Dennis Stücken <dstuecken@i-doit.com>
10+
* @author Dennis Stücken <dstuecken@me.com>
1111
*
1212
* @since 7.0
1313
*/
@@ -17,4 +17,4 @@ class ArithmeticError extends Error
1717
{
1818

1919
}
20-
}
20+
}

src/Exceptions/AssertionError.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @link http://php.net/manual/en/class.assertionerror.php
66
*
77
* @package dstuecken\php7ify
8-
* @author Dennis Stücken <dstuecken@i-doit.com>
8+
* @author Dennis Stücken <dstuecken@me.com>
99
*
1010
* @since 7.0
1111
*/
@@ -15,4 +15,4 @@ class AssertionError extends Error
1515
{
1616

1717
}
18-
}
18+
}

src/Exceptions/DivisionByZeroError.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @link http://php.net/manual/en/class.divisionbyzeroerror.php
66
*
77
* @package dstuecken\php7ify
8-
* @author Dennis Stücken <dstuecken@i-doit.com>
8+
* @author Dennis Stücken <dstuecken@me.com>
99
*
1010
* @since 7.0
1111
*/
@@ -15,4 +15,4 @@ class DivisionByZeroError extends Error
1515
{
1616

1717
}
18-
}
18+
}

src/Exceptions/Error.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @link http://php.net/manual/en/class.error.php
66
*
77
* @package dstuecken\php7ify
8-
* @author Dennis Stücken <dstuecken@i-doit.com>
8+
* @author Dennis Stücken <dstuecken@me.com>
99
*
1010
* @since 7.0
1111
*/
@@ -27,4 +27,4 @@ public function __toString()
2727
return $this->getMessage();
2828
}
2929
}
30-
}
30+
}

src/Exceptions/ParseError.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @link http://php.net/manual/en/class.parseerror.php
55
*
66
* @package dstuecken\php7ify
7-
* @author Dennis Stücken <dstuecken@i-doit.com>
7+
* @author Dennis Stücken <dstuecken@me.com>
88
*
99
* @since 7.0
1010
*/
@@ -14,4 +14,4 @@ class ParseError extends Error
1414
{
1515

1616
}
17-
}
17+
}

src/Exceptions/TypeError.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link http://php.net/manual/en/class.typeerror.php
99
*
1010
* @package dstuecken\php7ify
11-
* @author Dennis Stücken <dstuecken@i-doit.com>
11+
* @author Dennis Stücken <dstuecken@me.com>
1212
*
1313
* @since 7.0
1414
*/
@@ -18,4 +18,4 @@ class TypeError extends Error
1818
{
1919

2020
}
21-
}
21+
}

src/Functions/error_clear_last.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @link http://php.net/manual/de/function.error-clear-last.php
66
*
77
* @package dstuecken\php7ify
8-
* @author Dennis Stücken <dstuecken@i-doit.com>
8+
* @author Dennis Stücken <dstuecken@me.com>
99
*
1010
* @since 7.0
1111
*/
@@ -17,4 +17,4 @@ function error_clear_last()
1717
@trigger_error('');
1818
restore_error_handler();
1919
}
20-
}
20+
}

src/Functions/intdiv.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @link http://php.net/manual/de/function.intdiv.php
66
*
77
* @package dstuecken\php7ify
8-
* @author Dennis Stücken <dstuecken@i-doit.com>
8+
* @author Dennis Stücken <dstuecken@me.com>
99
*
1010
* @since 7.0
1111
*/
@@ -28,4 +28,4 @@ function intdiv($dividend, $divisor)
2828

2929
return ($dividend - ($dividend % $divisor)) / $divisor;
3030
}
31-
}
31+
}

src/Functions/preg_replace_callback_array.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @link http://php.net/manual/de/function.preg-replace-callback-array.php
66
*
77
* @package dstuecken\php7ify
8-
* @author Dennis Stücken <dstuecken@i-doit.com>
8+
* @author Dennis Stücken <dstuecken@me.com>
99
*
1010
* @since 7.0
1111
*/
@@ -28,4 +28,4 @@ function preg_replace_callback_array(array $patterns, $subject, $limit = -1, &$c
2828

2929
return $result;
3030
}
31-
}
31+
}

src/IntlChar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @link http://php.net/manual/de/class.intlchar.php
77
*
88
* @package dstuecken\php7ify
9-
* @author Dennis Stücken <dstuecken@i-doit.com>
9+
* @author Dennis Stücken <dstuecken@me.com>
1010
*
1111
* @since 7.0
1212
*/
@@ -1655,4 +1655,4 @@ public static function toupper($codepoint)
16551655
{
16561656
}
16571657
}
1658-
}
1658+
}

src/Php7/Compatibility.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Php7 compatibility checks for php 5.x projects
66
*
77
* @package dstuecken\php7ify
8-
* @author Dennis Stücken <dstuecken@i-doit.com>
8+
* @author Dennis Stücken <dstuecken@me.com>
99
*
1010
* @since 7.0
1111
*/
@@ -27,4 +27,4 @@ public static function isPhp7()
2727
return PHP_MAJOR_VERSION >= 7;
2828
}
2929

30-
}
30+
}

src/Throwable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @link http://php.net/manual/en/class.throwable.php
77
*
88
* @package dstuecken\php7ify
9-
* @author Dennis Stücken <dstuecken@i-doit.com>
9+
* @author Dennis Stücken <dstuecken@me.com>
1010
*
1111
* @since 7.0
1212
*/
@@ -95,4 +95,4 @@ public function getPrevious();
9595
*/
9696
public function __toString();
9797
}
98-
}
98+
}

0 commit comments

Comments
 (0)