Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
mockery
/
mockery
/
library
/
Mockery
/
Generator
:
UndefinedTargetClass.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Mockery (https://docs.mockery.io/) * * @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md * @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License * @link https://github.com/mockery/mockery for the canonical source repository */ namespace Mockery\Generator; use const PHP_VERSION_ID; class UndefinedTargetClass implements TargetClassInterface { private $name; public function __construct($name) { $this->name = $name; } public static function factory($name) { return new self($name); } public function getAttributes() { return []; } public function getName() { return $this->name; } public function isAbstract() { return false; } public function isFinal() { return false; } public function getMethods() { return array(); } public function getInterfaces() { return array(); } public function getNamespaceName() { $parts = explode("\\", ltrim($this->getName(), "\\")); array_pop($parts); return implode("\\", $parts); } public function inNamespace() { return $this->getNamespaceName() !== ''; } public function getShortName() { $parts = explode("\\", $this->getName()); return array_pop($parts); } public function implementsInterface($interface) { return false; } public function hasInternalAncestor() { return false; } public function __toString() { return $this->name; } }