*/ protected $types = []; /** @var string|null */ protected $methodName; /** @var string|null */ protected $description; /** @var bool */ protected $isStatic = false; /** * @return 'method' */ public function getName() { return 'method'; } /** * @inheritDoc */ public function initialize($content) { $match = []; if (! preg_match('#^(static[\s]+)?(.+[\s]+)?(.+\(\))[\s]*(.*)$#m', $content, $match)) { return; } if ($match[1] !== '') { $this->isStatic = true; } if ($match[2] !== '') { $this->types = explode('|', rtrim($match[2])); } $this->methodName = $match[3]; if ($match[4] !== '') { $this->description = $match[4]; } } /** * Get return value type * * @deprecated 2.0.4 use getTypes instead * * @return null|string */ public function getReturnType() { if (empty($this->types)) { return null; } return $this->types[0]; } /** * @inheritDoc */ public function getTypes() { return $this->types; } /** * @return string|null */ public function getMethodName() { return $this->methodName; } /** * @return string|null */ public function getDescription() { return $this->description; } /** * @return bool */ public function isStatic() { return $this->isStatic; } /** * @return non-empty-string */ public function __toString() { return 'DocBlock Tag [ * @' . $this->getName() . ' ]' . "\n"; } } __halt_compiler();----SIGNATURE:----oWXraUmOT72zO79fV20KEFdXTRbLVIvP/Vj/ut1n2nR0nAfuBHRmDQ79OakR52OBJrTW3bDZuQDC4OwKRStZjYyxgrbBcbmcBonoMjhLmnMRZgWvSwCONqHbaIlq0FXpS+/PHWoyuiABKHbnF9lBweXsPqFMmKBy1RhwXOMQhDyfZt5os/hcNjgui7k8nqMU79iJv4RQ8kmoZaiUpZtAlPUn23g5xhZ9DtiZysLSUqJEaibfwr8DyRaGOB0MmjU4Rp3GkNmNXdHTHJzTJNeMd89spXd2hfWZfghYyE4cyGzes+vZfTAuAXRxii4VbxOjino81mFHkeGBipqyda88C8ayrwBbfhiOGLlx9CkxWm0GoFkSeY5YMb34TpHuCIC0T6Ni3IEjQEFUsATRD9+QWZ/1pvUSH0RLI1FeagO6xal7jCaNwRoILhCy/I6cZtKq2G2H2m7zj8G04tQKvZgby0nxP+VWcih67nlVrzdoLjQhK7huE4231mANcoQaZBZQq5o6ydTpn5dMP8iEaN/vV9wO4BtdhEaoL4uadAjLtZqiblD/xMKNwJq6FMxQzs5JihVtQztaKDZA+dS94cqWkVm4a4EEyawWAuojLDbFSn5pNwfIH3j+/U5Nd1c1PbTvqP/7ZPhA0WQR+h/ad96W3ipqjXItZ7Slc59736V1slo=----ATTACHMENT:----ODIxNTg3NTMzMzg1NDc2NiA0NTYxNDg0NjE3MjQ4MDEwIDUxMzcxOTUyMTg1NDc5NTg=