.phpstorm.meta.php 992 B

12345678910
  1. <?php
  2. namespace PHPSTORM_META {
  3. registerArgumentsSet("date_units", "millenania", "millennium", "century", "centuries", "decade", "decades", "year", "years", "y", "yr", "yrs", "quarter", "quarters", "month", "months", "mo", "mos", "week", "weeks", "w", "day", "days", "d", "hour", "hours", "h", "minute", "minutes", "m", "second", "seconds", "s", "millisecond", "milliseconds", "milli", "ms", "microsecond", "microseconds", "micro", "µs");
  4. expectedArguments(\Carbon\Traits\Units::add(), 0, argumentsSet("date_units"));
  5. expectedArguments(\Carbon\Traits\Units::add(), 1, argumentsSet("date_units"));
  6. expectedArguments(\Carbon\CarbonInterface::add(), 0, argumentsSet("date_units"));
  7. expectedArguments(\Carbon\CarbonInterface::add(), 1, argumentsSet("date_units"));
  8. expectedArguments(\Carbon\CarbonInterface::getTimeFormatByPrecision(), 0, "minute", "second", "m", "millisecond", "µ", "microsecond", "minutes", "seconds", "ms", "milliseconds", "µs", "microseconds");
  9. }