/home/techb158/dev.balacoffee.com/vendor/nesbot/carbon/src/Carbon
NameSizeModeActions
Cli/-0755rm
Exceptions/-0755rm
Lang/-0755rm
Laravel/-0755rm
List/-0755rm
MessageFormatter/-0755rm
PHPStan/-0755rm
Traits/-0755rm
AbstractTranslator.php106920644editdlrm
Carbon.php992540644editdlrm
CarbonConverterInterface.php4170644editdlrm
CarbonImmutable.php1008040644editdlrm
CarbonInterface.php2472260644editdlrm
CarbonInterval.php1060510644editdlrm
CarbonPeriod.php848410644editdlrm
CarbonPeriodImmutable.php8700644editdlrm
CarbonTimeZone.php87340644editdlrm
Factory.php572850644editdlrm
FactoryImmutable.php550790644editdlrm
Language.php73210644editdlrm
Translator.php8060644editdlrm
TranslatorImmutable.php23320644editdlrm
TranslatorStrongTypeInterface.php5510644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/nesbot/carbon/src/Carbon/CarbonPeriodImmutable.php (870B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; class CarbonPeriodImmutable extends CarbonPeriod { /** * Default date class of iteration items. * * @var string */ protected const DEFAULT_DATE_CLASS = CarbonImmutable::class; /** * Date class of iteration items. * * @var string */ protected $dateClass = CarbonImmutable::class; /** * Prepare the instance to be set (self if mutable to be mutated, * copy if immutable to generate a new instance). * * @return static */ protected function copyIfImmutable() { return $this->constructed ? clone $this : $this; } }