oont-contents/plugins/woocommerce-square/vendor/apimatic/jsonmapper/tests/othernamespace/Foo.php
2025-02-08 15:10:23 +01:00

13 lines
149 B
PHP

<?php
namespace othernamespace;
class Foo
{
public $name;
public function __construct($name)
{
$this->name = $name;
}
}
?>