perfectin/specification

There is no license information available for the latest version (1.0.1) of this package.

Specification pattern for querying typo3 flow repositories

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:typo3-flow-framework

1.0.1 2016-02-10 20:25 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:58:27 UTC


README

Specification pattern classes for typo3/flow package

use \PerfectIn\Specification\Query\QuerySpecificationInterface;

public function query(QuerySpecificationInterface $querySpecification) {
	$query = $this->createQuery();
	$querySpecification->selectSatisfying($query);
	return $query->execute();
}