芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/punic/punic/src/Exception/InvalidDataFile.php
identifier = $identifier; $type = gettype($identifier); if ($type === 'string') { $message = "'$identifier' is not a valid data file identifier"; } else { $message = "A valid identifier should be a string, $type received"; } parent::__construct($message, \Punic\Exception::INVALID_DATAFILE, $previous); } /** * Retrieves the bad data file identifier. * * @return mixed */ public function getIdentifier() { return $this->identifier; } }