/home/techb158/ileadtechnology.com/vendor/nesbot/carbon/src/Carbon/Traits
NameSizeModeActions
Boundaries.php113010644editdlrm
Cast.php10900644editdlrm
Comparison.php354660644editdlrm
Converter.php151940644editdlrm
Creator.php314520644editdlrm
Date.php1653360644editdlrm
DeprecatedProperties.php16070644editdlrm
Difference.php543360644editdlrm
IntervalRounding.php15870644editdlrm
IntervalStep.php23460644editdlrm
Localization.php293290644editdlrm
Macro.php30930644editdlrm
MagicParameter.php7210644editdlrm
Mixin.php65540644editdlrm
Modifiers.php137600644editdlrm
Mutability.php13330644editdlrm
ObjectInitialisation.php4220644editdlrm
Options.php131270644editdlrm
Rounding.php77240644editdlrm
Serialization.php85210644editdlrm
Test.php77790644editdlrm
Timestamp.php65960644editdlrm
ToStringFormat.php14640644editdlrm
Units.php124290644editdlrm
Week.php73890644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/nesbot/carbon/src/Carbon/Traits/DeprecatedProperties.php (1607B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; trait DeprecatedProperties { /** * the day of week in current locale LC_TIME * * @var string * * @deprecated It uses OS language package and strftime() which is deprecated since PHP 8.1. * Use ->isoFormat('MMM') instead. * Deprecated since 2.55.0 */ public $localeDayOfWeek; /** * the abbreviated day of week in current locale LC_TIME * * @var string * * @deprecated It uses OS language package and strftime() which is deprecated since PHP 8.1. * Use ->isoFormat('dddd') instead. * Deprecated since 2.55.0 */ public $shortLocaleDayOfWeek; /** * the month in current locale LC_TIME * * @var string * * @deprecated It uses OS language package and strftime() which is deprecated since PHP 8.1. * Use ->isoFormat('ddd') instead. * Deprecated since 2.55.0 */ public $localeMonth; /** * the abbreviated month in current locale LC_TIME * * @var string * * @deprecated It uses OS language package and strftime() which is deprecated since PHP 8.1. * Use ->isoFormat('MMMM') instead. * Deprecated since 2.55.0 */ public $shortLocaleMonth; }