for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheCodingMachine\GraphQL\Controllers\Fixtures\Interfaces;
class ClassB extends ClassA
{
/**
* @var string
*/
private $bar;
public function __construct(string $foo, string $bar)
parent::__construct($foo);
$this->bar = $bar;
}
public function getBar(): string
return $this->bar;