for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Apie\OpenapiSchema\Spec;
use Apie\CommonValueObjects\Url;
use Apie\OpenapiSchema\Concerns\CompositeValueObjectWithExtension;
use Apie\OpenapiSchema\Contract\LicenseContract;
use Apie\ValueObjects\ValueObjectInterface;
class License implements ValueObjectInterface, LicenseContract
{
use CompositeValueObjectWithExtension;
/**
* @var string
*/
private $name;
* @var Url
private $url;
$url
public function __construct(string $name)
$this->name = $name;
}