json-api-server/src/Schema/HasOne.php

16 lines
276 B
PHP

<?php
namespace Tobyz\JsonApiServer\Schema;
use Doctrine\Common\Inflector\Inflector;
class HasOne extends Relationship
{
public function __construct(string $name)
{
parent::__construct($name);
$this->resource = Inflector::pluralize($name);
}
}