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

Maintainers

Package info

github.com/benovie/PerfectIn.Specification

Type:typo3-flow-framework

pkg:composer/perfectin/specification

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.1 2016-02-10 20:25 UTC

This package is not auto-updated.

Last update: 2026-03-15 01:43:23 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();
}