Skip to content

Commit 2f07c34

Browse files
authored
Update and rename Set.php to set.php
1 parent fa5fa45 commit 2f07c34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Set.php renamed to set.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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
*/
173173
function set()
174174
{
175-
return ( new ReflectionClass('Set') )->newInstanceArgs( func_get_args() );
175+
return ( new \ReflectionClass('Set') )->newInstanceArgs( func_get_args() );
176176
}

0 commit comments

Comments
 (0)