You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -235,16 +219,6 @@ public static function dateTime(StringType|string|null $timezone = null): DateTi
235
219
/**
236
220
* Creates a date from the given year, month, day and time values.
237
221
*
238
-
* @param null|int|NumeralType $month
239
-
* @param null|int|NumeralType $day
240
-
* @param null|int|NumeralType $hour
241
-
* @param null|int|NumeralType $minute
242
-
* @param null|int|NumeralType $second
243
-
* @param null|int|NumeralType $millisecond
244
-
* @param null|int|NumeralType $microsecond
245
-
* @param null|int|NumeralType $nanosecond
246
-
* @param null|string|StringType $timezone
247
-
*
248
222
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-datetime-calendar Corresponding documentation on Neo4j.com
249
223
*/
250
224
publicstaticfunctiondateTimeYMD(
@@ -280,16 +254,6 @@ public static function dateTimeYMD(
280
254
/**
281
255
* Creates a datetime with the specified year, week, dayOfWeek, hour, minute, second, millisecond, microsecond, nanosecond and timezone component values.
282
256
*
283
-
* @param null|int|NumeralType $week
284
-
* @param null|int|NumeralType $dayOfWeek
285
-
* @param null|int|NumeralType $hour
286
-
* @param null|int|NumeralType $minute
287
-
* @param null|int|NumeralType $second
288
-
* @param null|int|NumeralType $millisecond
289
-
* @param null|int|NumeralType $microsecond
290
-
* @param null|int|NumeralType $nanosecond
291
-
* @param null|string|StringType $timezone
292
-
*
293
257
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-datetime-week Corresponding documentation on Neo4j.com
294
258
*/
295
259
publicstaticfunctiondateTimeYWD(
@@ -325,16 +289,6 @@ public static function dateTimeYWD(
325
289
/**
326
290
* Creates a datetime with the specified year, quarter, dayOfQuarter, hour, minute, second, millisecond, microsecond, nanosecond and timezone component values.
327
291
*
328
-
* @param null|int|NumeralType $quarter
329
-
* @param null|int|NumeralType $dayOfQuarter
330
-
* @param null|int|NumeralType $hour
331
-
* @param null|int|NumeralType $minute
332
-
* @param null|int|NumeralType $second
333
-
* @param null|int|NumeralType $millisecond
334
-
* @param null|int|NumeralType $microsecond
335
-
* @param null|int|NumeralType $nanosecond
336
-
* @param null|string|StringType $timezone
337
-
*
338
292
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-datetime-quarter Corresponding documentation on Neo4j.com
339
293
*/
340
294
publicstaticfunctiondateTimeYQD(
@@ -370,15 +324,6 @@ public static function dateTimeYQD(
370
324
/**
371
325
* Creates a datetime with the specified year, ordinalDay, hour, minute, second, millisecond, microsecond, nanosecond and timezone component values.
372
326
*
373
-
* @param null|int|NumeralType $ordinalDay
374
-
* @param null|int|NumeralType $hour
375
-
* @param null|int|NumeralType $minute
376
-
* @param null|int|NumeralType $second
377
-
* @param null|int|NumeralType $millisecond
378
-
* @param null|int|NumeralType $microsecond
379
-
* @param null|int|NumeralType $nanosecond
380
-
* @param null|string|StringType $timezone
381
-
*
382
327
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-datetime-ordinal Corresponding documentation on Neo4j.com
383
328
*/
384
329
publicstaticfunctiondateTimeYD(
@@ -420,8 +365,6 @@ public static function dateTimeString(StringType|string $dateString): DateTime
420
365
/**
421
366
* Creates the current localDateTime value.
422
367
*
423
-
* @param null|string|StringType $timezone
424
-
*
425
368
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-localdatetime-current Corresponding documentation on Neo4j.com
@@ -436,15 +379,6 @@ public static function localDateTime(StringType|string|null $timezone = null): L
436
379
/**
437
380
* Creates a LocalDateTime value with specified year, month, day and time props.
438
381
*
439
-
* @param null|int|NumeralType $month
440
-
* @param null|int|NumeralType $day
441
-
* @param null|int|NumeralType $hour
442
-
* @param null|int|NumeralType $minute
443
-
* @param null|int|NumeralType $second
444
-
* @param null|int|NumeralType $millisecond
445
-
* @param null|int|NumeralType $microsecond
446
-
* @param null|int|NumeralType $nanosecond
447
-
*
448
382
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-localdatetime-calendar Corresponding documentation on Neo4j.com
449
383
*/
450
384
publicstaticfunctionlocalDateTimeYMD(
@@ -479,15 +413,6 @@ public static function localDateTimeYMD(
479
413
* Creates a LocalDateTime value with the specified year, week, dayOfWeek, hour, minute,
480
414
* second, millisecond, microsecond and nanosecond component value.
481
415
*
482
-
* @param null|int|NumeralType $week
483
-
* @param null|int|NumeralType $dayOfWeek
484
-
* @param null|int|NumeralType $hour
485
-
* @param null|int|NumeralType $minute
486
-
* @param null|int|NumeralType $second
487
-
* @param null|int|NumeralType $millisecond
488
-
* @param null|int|NumeralType $microsecond
489
-
* @param null|int|NumeralType $nanosecond
490
-
*
491
416
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-localdatetime-week Corresponding documentation on Neo4j.com
492
417
*/
493
418
publicstaticfunctionlocalDateTimeYWD(
@@ -521,15 +446,6 @@ public static function localDateTimeYWD(
521
446
/**
522
447
* Creates a LocalDateTime value with the specified year, quarter, dayOfQuarter, hour, minute, second, millisecond, microsecond and nanosecond component values.
523
448
*
524
-
* @param null|int|NumeralType $quarter
525
-
* @param null|int|NumeralType $dayOfQuarter
526
-
* @param null|int|NumeralType $hour
527
-
* @param null|int|NumeralType $minute
528
-
* @param null|int|NumeralType $second
529
-
* @param null|int|NumeralType $millisecond
530
-
* @param null|int|NumeralType $microsecond
531
-
* @param null|int|NumeralType $nanosecond
532
-
*
533
449
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-localdatetime-quarter Corresponding documentation on Neo4j.com
534
450
*/
535
451
publicstaticfunctionlocalDateTimeYQD(
@@ -563,14 +479,6 @@ public static function localDateTimeYQD(
563
479
/**
564
480
* Creates a LocalDateTime value with the specified year, ordinalDay, hour, minute, second, millisecond, microsecond and nanosecond component values.
565
481
*
566
-
* @param null|int|NumeralType $ordinalDay
567
-
* @param null|int|NumeralType $hour
568
-
* @param null|int|NumeralType $minute
569
-
* @param null|int|NumeralType $second
570
-
* @param null|int|NumeralType $millisecond
571
-
* @param null|int|NumeralType $microsecond
572
-
* @param null|int|NumeralType $nanosecond
573
-
*
574
482
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-localdatetime-ordinal Corresponding documentation on Neo4j.com
575
483
*/
576
484
publicstaticfunctionlocalDateTimeYD(
@@ -612,8 +520,6 @@ public static function localDateTimeString(StringType|string $localDateTimeStrin
612
520
/**
613
521
* Creates the current LocalTime value.
614
522
*
615
-
* @param null|string|StringType $timezone
616
-
*
617
523
* @see https://neo4j.com/docs/cypher-manual/current/functions/temporal/#functions-localtime-current Corresponding documentation on Neo4j.com
0 commit comments