summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 22:10:02 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 22:10:02 +0200
commitb9de58c0c9da63f6a489df416df1819a40cb507d (patch)
tree838ca16395b6c681e22e970897dd9a71b950e955 /utility
parent066b4b5a22a89fe3b38d37f09153090091928cd5 (diff)
remove more old code
Diffstat (limited to 'utility')
-rw-r--r--utility/methodannotationreader.php50
1 files changed, 0 insertions, 50 deletions
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 @@
-<?php
-/**
- * ownCloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @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