summaryrefslogtreecommitdiff
path: root/tests/lang/passByReference_007.phpt
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2015-03-15 09:47:25 +0100
committerNikita Popov <nikic@php.net>2015-04-01 11:17:55 +0200
commit8d00385871c6dca1f18a5e7924c655a2cb381564 (patch)
treeaeaa0503ba613bc77332dde492b71f6f105d0ef2 /tests/lang/passByReference_007.phpt
parent4796e0242b8cdd2a77b552fcbaa74d70d87f6d0a (diff)
downloadphp-git-8d00385871c6dca1f18a5e7924c655a2cb381564.tar.gz
Reclassify E_STRICT notices
Per RFC https://wiki.php.net/rfc/reclassify_e_strict While reviewing this, found that there are still three E_STRICTs left in libraries - need to discuss those.
Diffstat (limited to 'tests/lang/passByReference_007.phpt')
-rw-r--r--tests/lang/passByReference_007.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lang/passByReference_007.phpt b/tests/lang/passByReference_007.phpt
index a743245e2c..300ce56d7c 100644
--- a/tests/lang/passByReference_007.phpt
+++ b/tests/lang/passByReference_007.phpt
@@ -79,7 +79,7 @@ var_dump($a);
--EXPECTF--
Pass a function call that returns a value:
-Strict Standards: Only variables should be passed by reference in %s on line 44
+Notice: Only variables should be passed by reference in %s on line 44
string(8) "original"
string(8) "original"
Pass a function call that returns a reference:
@@ -88,7 +88,7 @@ string(7) "changed"
Pass a static method call that returns a value:
-Strict Standards: Only variables should be passed by reference in %s on line 55
+Notice: Only variables should be passed by reference in %s on line 55
string(8) "original"
string(8) "original"
Pass a static method call that returns a reference:
@@ -97,7 +97,7 @@ string(7) "changed"
Pass a method call that returns a value:
-Strict Standards: Only variables should be passed by reference in %s on line 67
+Notice: Only variables should be passed by reference in %s on line 67
string(8) "original"
string(8) "original"
Pass a method call that returns a reference: