File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1111 * @version 1.0
1212 * @license http://www.gnu.org/licenses/gpl-3.0.en.html
1313 */
14- class Set extends ArrayObject
14+ class Set extends \ ArrayObject
1515{
1616 /**
1717 * The current amount of values in the set.
@@ -26,7 +26,7 @@ class Set extends ArrayObject
2626 */
2727 public function __construct ()
2828 {
29- parent ::__construct ( [], ArrayObject::STD_PROP_LIST );
29+ parent ::__construct ( [], \ ArrayObject::STD_PROP_LIST );
3030 foreach ( func_get_args () as $ insert )
3131 $ this ->add ( $ insert );
3232 }
@@ -172,5 +172,5 @@ public function offsetUnset( $offset )
172172 */
173173function set ()
174174{
175- return ( new ReflectionClass ('Set ' ) )->newInstanceArgs ( func_get_args () );
175+ return ( new \ ReflectionClass ('Set ' ) )->newInstanceArgs ( func_get_args () );
176176}
You can’t perform that action at this time.
0 commit comments