1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

[php/en] Fix typo (#2590)

This commit is contained in:
Badal Surana
2016-12-03 16:16:23 +05:30
committed by ven
parent 6cc36cb090
commit 7c16ec5ae1

View File

@@ -824,7 +824,7 @@ echo "Current method is " . __METHOD__;
echo "Current namespace is " . __NAMESPACE__; echo "Current namespace is " . __NAMESPACE__;
// Get the name of the current trait. Only returns a value when used inside a trait or object declaration. // Get the name of the current trait. Only returns a value when used inside a trait or object declaration.
echo "Current namespace is " . __TRAIT__; echo "Current trait is " . __TRAIT__;
/********************** /**********************
* Error Handling * Error Handling