diff options
author | Nikita Popov <nikic@php.net> | 2015-03-31 16:10:06 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2015-03-31 17:55:27 +0200 |
commit | 6ef9216269c0a42898feed90cec9fc4193cad9b6 (patch) | |
tree | 768aff67da6c219c49b34b727d4a109e149be614 /tests/lang | |
parent | db76b708cf14ed2794d26600c0e49df8aa36fbea (diff) | |
download | php-git-6ef9216269c0a42898feed90cec9fc4193cad9b6.tar.gz |
Finish PHP 4 constructor deprecation
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/bug27535.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/bug27535.phpt b/tests/lang/bug27535.phpt index a6ceae7463..29fd033469 100644 --- a/tests/lang/bug27535.phpt +++ b/tests/lang/bug27535.phpt @@ -12,7 +12,7 @@ class Class2 { public $storage = ''; - function Class2() + function __construct() { $this->storage = new Class1(); |