From b9de58c0c9da63f6a489df416df1819a40cb507d Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 13 May 2014 22:10:02 +0200 Subject: remove more old code --- utility/methodannotationreader.php | 50 -------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 utility/methodannotationreader.php (limited to 'utility') diff --git a/utility/methodannotationreader.php b/utility/methodannotationreader.php deleted file mode 100644 index a3732ec21..000000000 --- a/utility/methodannotationreader.php +++ /dev/null @@ -1,50 +0,0 @@ - - * @author Bernhard Posselt - * @copyright Alessandro Cosentino 2012 - * @copyright Bernhard Posselt 2012, 2014 - */ - -namespace OCA\News\Utility; - - -/** - * Reads and parses annotations from doc comments - */ -class MethodAnnotationReader { - - private $annotations; - - /** - * @param object $object an object or classname - * @param string $method the method which we want to inspect for annotations - */ - public function __construct($object, $method){ - $this->annotations = array(); - - $reflection = new \ReflectionMethod($object, $method); - $docs = $reflection->getDocComment(); - - // extract everythin prefixed by @ and first letter uppercase - preg_match_all('/@([A-Z]\w+)/', $docs, $matches); - $this->annotations = $matches[1]; - } - - - /** - * Check if a method contains an annotation - * @param string $name the name of the annotation - * @return bool true if the annotation is found - */ - public function hasAnnotation($name){ - return in_array($name, $this->annotations); - } - - -} \ No newline at end of file -- cgit v1.2.3