File "MacroStrongType.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/nesbot/carbon/lazy/Carbon/PHPStan/MacroStrongType.php
File size: 493 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Carbon\PHPStan;
if (!defined('ABSPATH')) exit;
if (!\class_exists(LazyMacro::class, \false)) {
 abstract class LazyMacro extends AbstractMacro
 {
 public function getFileName() : ?string
 {
 return $this->reflectionFunction->getFileName();
 }
 public function getStartLine() : ?int
 {
 return $this->reflectionFunction->getStartLine();
 }
 public function getEndLine() : ?int
 {
 return $this->reflectionFunction->getEndLine();
 }
 }
}