for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Date: 04.12.15
*
* @author Portey Vasil <[email protected]>
*/
namespace Youshido\GraphQL\Definition\Traits;
use Youshido\GraphQL\Schema;
trait SchemaContainableTrait
{
/** @var Schema */
protected $schema;
* @param $schema Schema
public function setSchema($schema)
$this->schema = $schema;
}
* @return Schema
public function getSchema()
return $this->schema;