From 8f13bf2878b79f6fab83698b557189ea21b887c4 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Mon, 15 Jun 2020 12:53:53 +0300 Subject: [PATCH] remove build badge of SensioLabsInsight linked to different project --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e35d6a1..802b06ad 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![Latest Stable Version Packagist](https://img.shields.io/packagist/v/happyr/doctrine-specification.svg)](https://packagist.org/packages/happyr/doctrine-specification) [![Monthly Downloads Packagist](https://img.shields.io/packagist/dm/happyr/doctrine-specification.svg)](https://packagist.org/packages/happyr/doctrine-specification) [![Total Downloads Packagist](https://img.shields.io/packagist/dt/happyr/doctrine-specification.svg)](https://packagist.org/packages/happyr/doctrine-specification) -[![SensioLabsInsight](https://insight.sensiolabs.com/projects/44c425af-90f6-4c25-b789-4ece28b01a2b/mini.png)](https://insight.sensiolabs.com/projects/44c425af-90f6-4c25-b789-4ece28b01a2b) [![Quality Score](https://img.shields.io/scrutinizer/g/happyr/doctrine-specification.svg)](https://scrutinizer-ci.com/g/happyr/doctrine-specification) This library gives you a new way for writing queries. Using the [Specification pattern][wiki_spec_pattern] you will @@ -191,7 +190,7 @@ class AdvertRepository extends EntityRepository The issues with the QueryBuilder implementation are: * You may only use the filters `filterOwnedByCompany` and `filterAdvertsWeShouldClose` inside AdvertRepository. -* You can not build a tree with And/Or/Not. Say that you want every Advert but not those owned by $company. There +* You can not build a tree with And/Or/Not. Say that you want every Advert but not those owned by $company. There is no way to reuse `filterOwnedByCompany()` in that case. * Different parts of the QueryBuilder filtering cannot be composed together, because of the way the API is created. Assume we have a filterGroupsForApi() call, there is no way to combine it with another call filterGroupsForPermissions().