for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Softonic\GraphQL\Config;
use Softonic\GraphQL\Traits\JsonPathAccessor;
class MutationTypeConfig
{
use JsonPathAccessor;
/**
* @var string
*/
public $type;
public $linksTo;
* @var array
public $children = [];
public function __get(string $propertyName)
if (property_exists(static::class, $propertyName)) {
return $this->{$propertyName};
}
return $this->children[$propertyName];