Skip to content

Commit c47b588

Browse files
committed
docs: html code selector
1 parent bd65d5e commit c47b588

23 files changed

+53
-53
lines changed

src/Doctrine/Odm/Filter/BooleanFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
* </resources>
9797
* ```
9898
*
99-
* </CodeSelector>
99+
* </div>
100100
*
101101
* Given that the collection endpoint is `/books`, you can filter books with the following query: `/books?published=true`.
102102
*

src/Doctrine/Odm/Filter/DateFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
* </resources>
110110
* ```
111111
*
112-
* </CodeSelector>
112+
* </div>
113113
*
114114
* Given that the collection endpoint is `/books`, you can filter books by date with the following query: `/books?createdAt[after]=2018-03-19`.
115115
*

src/Doctrine/Odm/Filter/ExistsFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
* </resources>
101101
* ```
102102
*
103-
* </CodeSelector>
103+
* </div>
104104
*
105105
* Given that the collection endpoint is `/books`, you can filter books with the following query: `/books?exists[comment]=true`.
106106
*

src/Doctrine/Odm/Filter/NumericFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
* </resources>
9797
* ```
9898
*
99-
* </CodeSelector>
99+
* </div>
100100
*
101101
* Given that the collection endpoint is `/books`, you can filter books with the following query: `/books?price=10`.
102102
*

src/Doctrine/Odm/Filter/OrderFilter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
* </resources>
103103
* ```
104104
*
105-
* </CodeSelector>
105+
* </div>
106106
*
107107
* Given that the collection endpoint is `/books`, you can filter books by title in ascending order and then by ID in descending order with the following query: `/books?order[title]=desc&order[id]=asc`.
108108
*
@@ -183,7 +183,7 @@
183183
* </resources>
184184
* ```
185185
*
186-
* </CodeSelector>
186+
* </div>
187187
*
188188
* When the property used for ordering can contain `null` values, you may want to specify how `null` values are treated in the comparison:
189189
* - Use the default behavior of the DBMS: use `null` strategy

src/Doctrine/Odm/Filter/RangeFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
* </resources>
9898
* ```
9999
*
100-
* </CodeSelector>
100+
* </div>
101101
*
102102
* Given that the collection endpoint is `/books`, you can filter books with the following query: `/books?price[between]=12.99..15.99`.
103103
*

src/Doctrine/Odm/Filter/SearchFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
* </resources>
130130
* ```
131131
*
132-
* </CodeSelector>
132+
* </div>
133133
*
134134
* @author Kévin Dunglas <[email protected]>
135135
* @author Alan Poulain <[email protected]>

src/Doctrine/Orm/Filter/BooleanFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
* </resources>
100100
* ```
101101
*
102-
* </CodeSelector>
102+
* </div>
103103
*
104104
* Given that the collection endpoint is `/books`, you can filter books with the following query: `/books?published=true`.
105105
*

src/Doctrine/Orm/Filter/DateFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
* </resources>
114114
* ```
115115
*
116-
* </CodeSelector>
116+
* </div>
117117
*
118118
* Given that the collection endpoint is `/books`, you can filter books by date with the following query: `/books?createdAt[after]=2018-03-19`.
119119
*

src/Doctrine/Orm/Filter/ExistsFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
* </resources>
105105
* ```
106106
*
107-
* </CodeSelector>
107+
* </div>
108108
*
109109
* Given that the collection endpoint is `/books`, you can filter books with the following query: `/books?exists[comment]=true`.
110110
*

0 commit comments

Comments
 (0)