13 lines
149 B
PHP
13 lines
149 B
PHP
<?php
|
|
namespace othernamespace;
|
|
|
|
class Foo
|
|
{
|
|
public $name;
|
|
|
|
public function __construct($name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
}
|
|
?>
|