File: .phpstorm.meta.php

package info (click to toggle)
php-nesbot-carbon 3.10.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,132 kB
  • sloc: php: 163,896; xml: 119; makefile: 32; sh: 14
file content (10 lines) | stat: -rw-r--r-- 992 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
<?php
namespace PHPSTORM_META {
    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");
    expectedArguments(\Carbon\Traits\Units::add(), 0, argumentsSet("date_units"));
    expectedArguments(\Carbon\Traits\Units::add(), 1, argumentsSet("date_units"));
    expectedArguments(\Carbon\CarbonInterface::add(), 0, argumentsSet("date_units"));
    expectedArguments(\Carbon\CarbonInterface::add(), 1, argumentsSet("date_units"));

    expectedArguments(\Carbon\CarbonInterface::getTimeFormatByPrecision(), 0, "minute", "second", "m", "millisecond", "µ", "microsecond", "minutes", "seconds", "ms", "milliseconds", "µs", "microseconds");
}