for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Apie\OpenapiSchema\Spec;
use Apie\OpenapiSchema\Concerns\CompositeValueObjectWithExtension;
use Apie\OpenapiSchema\Map\ParameterList;
use Apie\OpenapiSchema\Map\ServerList;
use Apie\ValueObjects\ValueObjectInterface;
class PathItem implements ValueObjectInterface
{
use CompositeValueObjectWithExtension;
Apie\OpenapiSchema\Conce...alueObjectWithExtension
$name
Apie\OpenapiSchema\Spec\PathItem
/**
* @var string|null
*/
private $summary;
$summary
private $description;
$description
* @var Operation|null
private $get;
private $put;
$put
private $post;
$post
private $delete;
$delete
private $options;
$options
private $head;
$head
private $patch;
$patch
private $trace;
$trace
* @var ServerList|null
private $servers;
$servers
* @var ParameterList|null
private $parameters;
$parameters
* @return Operation|null
public function getGet(): ?Operation
return $this->get;
}