@@ -122,9 +122,9 @@ public function dropDatabase()
122
122
}
123
123
124
124
/**
125
- * @Given there is :nb dummy objects
125
+ * @Given there are :nb dummy objects
126
126
*/
127
- public function thereIsDummyObjects (int $ nb )
127
+ public function thereAreDummyObjects (int $ nb )
128
128
{
129
129
$ descriptions = ['Smart dummy. ' , 'Not so smart dummy. ' ];
130
130
@@ -183,9 +183,9 @@ public function thereAreFooDummyObjectsWithFakeNames($nb)
183
183
}
184
184
185
185
/**
186
- * @Given there is :nb dummy group objects
186
+ * @Given there are :nb dummy group objects
187
187
*/
188
- public function thereIsDummyGroupObjects (int $ nb )
188
+ public function thereAreDummyGroupObjects (int $ nb )
189
189
{
190
190
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
191
191
$ dummyGroup = new DummyGroup ();
@@ -201,9 +201,9 @@ public function thereIsDummyGroupObjects(int $nb)
201
201
}
202
202
203
203
/**
204
- * @Given there is :nb dummy property objects
204
+ * @Given there are :nb dummy property objects
205
205
*/
206
- public function thereIsDummyPropertyObjects (int $ nb )
206
+ public function thereAreDummyPropertyObjects (int $ nb )
207
207
{
208
208
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
209
209
$ dummyProperty = new DummyProperty ();
@@ -225,7 +225,7 @@ public function thereIsDummyPropertyObjects(int $nb)
225
225
/**
226
226
* @Given there are :nb embedded dummy objects
227
227
*/
228
- public function thereIsEmbeddedDummyObjects (int $ nb )
228
+ public function thereAreEmbeddedDummyObjects (int $ nb )
229
229
{
230
230
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
231
231
$ dummy = new EmbeddedDummy ();
@@ -242,9 +242,9 @@ public function thereIsEmbeddedDummyObjects(int $nb)
242
242
}
243
243
244
244
/**
245
- * @Given there is :nb dummy objects with relatedDummy
245
+ * @Given there are :nb dummy objects with relatedDummy
246
246
*/
247
- public function thereIsDummyObjectsWithRelatedDummy (int $ nb )
247
+ public function thereAreDummyObjectsWithRelatedDummy (int $ nb )
248
248
{
249
249
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
250
250
$ relatedDummy = new RelatedDummy ();
@@ -263,9 +263,9 @@ public function thereIsDummyObjectsWithRelatedDummy(int $nb)
263
263
}
264
264
265
265
/**
266
- * @Given there is :nb dummy objects with relatedDummy and its thirdLevel
266
+ * @Given there are :nb dummy objects with relatedDummy and its thirdLevel
267
267
*/
268
- public function thereIsDummyObjectsWithRelatedDummyAndItsThirdLevel (int $ nb )
268
+ public function thereAreDummyObjectsWithRelatedDummyAndItsThirdLevel (int $ nb )
269
269
{
270
270
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
271
271
$ thirdLevel = new ThirdLevel ();
@@ -288,9 +288,9 @@ public function thereIsDummyObjectsWithRelatedDummyAndItsThirdLevel(int $nb)
288
288
}
289
289
290
290
/**
291
- * @Given there is :nb dummy objects with embeddedDummy
291
+ * @Given there are :nb dummy objects with embeddedDummy
292
292
*/
293
- public function thereIsDummyObjectsWithEmbeddedDummy (int $ nb )
293
+ public function thereAreDummyObjectsWithEmbeddedDummy (int $ nb )
294
294
{
295
295
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
296
296
$ embeddableDummy = new EmbeddableDummy ();
@@ -307,9 +307,9 @@ public function thereIsDummyObjectsWithEmbeddedDummy(int $nb)
307
307
}
308
308
309
309
/**
310
- * @Given there is :nb dummy objects having each :nbrelated relatedDummies
310
+ * @Given there are :nb dummy objects having each :nbrelated relatedDummies
311
311
*/
312
- public function thereIsDummyObjectsWithRelatedDummies (int $ nb , int $ nbrelated )
312
+ public function thereAreDummyObjectsWithRelatedDummies (int $ nb , int $ nbrelated )
313
313
{
314
314
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
315
315
$ dummy = new Dummy ();
@@ -332,9 +332,9 @@ public function thereIsDummyObjectsWithRelatedDummies(int $nb, int $nbrelated)
332
332
}
333
333
334
334
/**
335
- * @Given there is :nb dummy objects with dummyDate
335
+ * @Given there are :nb dummy objects with dummyDate
336
336
*/
337
- public function thereIsDummyObjectsWithDummyDate (int $ nb )
337
+ public function thereAreDummyObjectsWithDummyDate (int $ nb )
338
338
{
339
339
$ descriptions = ['Smart dummy. ' , 'Not so smart dummy. ' ];
340
340
@@ -358,9 +358,9 @@ public function thereIsDummyObjectsWithDummyDate(int $nb)
358
358
}
359
359
360
360
/**
361
- * @Given there is :nb dummy objects with dummyDate and dummyBoolean :bool
361
+ * @Given there are :nb dummy objects with dummyDate and dummyBoolean :bool
362
362
*/
363
- public function thereIsDummyObjectsWithDummyDateAndDummyBoolean (int $ nb , string $ bool )
363
+ public function thereAreDummyObjectsWithDummyDateAndDummyBoolean (int $ nb , string $ bool )
364
364
{
365
365
$ descriptions = ['Smart dummy. ' , 'Not so smart dummy. ' ];
366
366
@@ -394,9 +394,9 @@ public function thereIsDummyObjectsWithDummyDateAndDummyBoolean(int $nb, string
394
394
}
395
395
396
396
/**
397
- * @Given there is :nb dummy objects with dummyDate and relatedDummy
397
+ * @Given there are :nb dummy objects with dummyDate and relatedDummy
398
398
*/
399
- public function thereIsDummyObjectsWithDummyDateAndRelatedDummy (int $ nb )
399
+ public function thereAreDummyObjectsWithDummyDateAndRelatedDummy (int $ nb )
400
400
{
401
401
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
402
402
$ date = new \DateTime (sprintf ('2015-04-%d ' , $ i ), new \DateTimeZone ('UTC ' ));
@@ -422,9 +422,9 @@ public function thereIsDummyObjectsWithDummyDateAndRelatedDummy(int $nb)
422
422
}
423
423
424
424
/**
425
- * @Given there is :nb embedded dummy objects with dummyDate and embeddedDummy
425
+ * @Given there are :nb embedded dummy objects with dummyDate and embeddedDummy
426
426
*/
427
- public function thereIsDummyObjectsWithDummyDateAndEmbeddedDummy (int $ nb )
427
+ public function thereAreDummyObjectsWithDummyDateAndEmbeddedDummy (int $ nb )
428
428
{
429
429
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
430
430
$ date = new \DateTime (sprintf ('2015-04-%d ' , $ i ), new \DateTimeZone ('UTC ' ));
@@ -448,9 +448,9 @@ public function thereIsDummyObjectsWithDummyDateAndEmbeddedDummy(int $nb)
448
448
}
449
449
450
450
/**
451
- * @Given there is :nb dummy objects with dummyPrice
451
+ * @Given there are :nb dummy objects with dummyPrice
452
452
*/
453
- public function thereIsDummyObjectsWithDummyPrice (int $ nb )
453
+ public function thereAreDummyObjectsWithDummyPrice (int $ nb )
454
454
{
455
455
$ descriptions = ['Smart dummy. ' , 'Not so smart dummy. ' ];
456
456
$ prices = ['9.99 ' , '12.99 ' , '15.99 ' , '19.99 ' ];
@@ -469,9 +469,9 @@ public function thereIsDummyObjectsWithDummyPrice(int $nb)
469
469
}
470
470
471
471
/**
472
- * @Given there is :nb dummy objects with dummyBoolean :bool
472
+ * @Given there are :nb dummy objects with dummyBoolean :bool
473
473
*/
474
- public function thereIsDummyObjectsWithDummyBoolean (int $ nb , string $ bool )
474
+ public function thereAreDummyObjectsWithDummyBoolean (int $ nb , string $ bool )
475
475
{
476
476
if (in_array ($ bool , ['true ' , '1 ' , 1 ], true )) {
477
477
$ bool = true ;
@@ -497,9 +497,9 @@ public function thereIsDummyObjectsWithDummyBoolean(int $nb, string $bool)
497
497
}
498
498
499
499
/**
500
- * @Given there is :nb embedded dummy objects with embeddedDummy.dummyBoolean :bool
500
+ * @Given there are :nb embedded dummy objects with embeddedDummy.dummyBoolean :bool
501
501
*/
502
- public function thereIsDummyObjectsWithEmbeddedDummyBoolean (int $ nb , string $ bool )
502
+ public function thereAreDummyObjectsWithEmbeddedDummyBoolean (int $ nb , string $ bool )
503
503
{
504
504
if (in_array ($ bool , ['true ' , '1 ' , 1 ], true )) {
505
505
$ bool = true ;
@@ -524,9 +524,9 @@ public function thereIsDummyObjectsWithEmbeddedDummyBoolean(int $nb, string $boo
524
524
}
525
525
526
526
/**
527
- * @Given there is :nb embedded dummy objects with relatedDummy.embeddedDummy.dummyBoolean :bool
527
+ * @Given there are :nb embedded dummy objects with relatedDummy.embeddedDummy.dummyBoolean :bool
528
528
*/
529
- public function thereIsDummyObjectsWithRelationEmbeddedDummyBoolean (int $ nb , string $ bool )
529
+ public function thereAreDummyObjectsWithRelationEmbeddedDummyBoolean (int $ nb , string $ bool )
530
530
{
531
531
if (in_array ($ bool , ['true ' , '1 ' , 1 ], true )) {
532
532
$ bool = true ;
@@ -823,9 +823,9 @@ public function createPeopleWithPets()
823
823
}
824
824
825
825
/**
826
- * @Given there is :nb dummydate objects with dummyDate
826
+ * @Given there are :nb dummydate objects with dummyDate
827
827
*/
828
- public function thereIsDummyDateObjectsWithDummyDate (int $ nb )
828
+ public function thereAreDummyDateObjectsWithDummyDate (int $ nb )
829
829
{
830
830
for ($ i = 1 ; $ i <= $ nb ; ++$ i ) {
831
831
$ date = new \DateTime (sprintf ('2015-04-%d ' , $ i ), new \DateTimeZone ('UTC ' ));
0 commit comments