for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\ORM\Promise\Example;
use Cycle\ORM\ORMInterface;
use Cycle\ORM\Promise\PromiseInterface;
class ProxyStub implements PromiseInterface
{
/**
* @param ORMInterface $orm
* @param string $role
* @param array $scope
*/
public function __construct(ORMInterface $orm, string $role, array $scope)
$orm
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$role
$scope
}
* {@inheritdoc}
public function __loaded(): bool
public function __role(): string
public function __scope(): array
public function __resolve()
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.