codelytv/criteria-to-doctrine

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

Installs: 90

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/codelytv/criteria-to-doctrine

0.1.3 2024-08-06 13:56 UTC

This package is auto-updated.

Last update: 2025-10-06 17:11:05 UTC


README

Codely logo

🎼 Criteria to Doctrine

🔒 Read-only repository

Any modification must be done in the main repository.

📥 Installation

composer require codelytv/criteria-to-doctrine

💻 Usage

public function matching(Criteria $criteria): array
{
    $doctrineCriteria = (new CriteriaToDoctrineConverter())->convert($criteria);

    return $this->repository(BackofficeCourse::class)->matching($doctrineCriteria)->toArray();
}