Changeset 1311
- Timestamp:
- 01/29/08 18:44:27 (7 months ago)
- Files:
-
- trunk/src/main/php/net/stubbles/auth/stubAuth.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/events/stubEventDispatcher.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ipo/request/stubRequestPrefixDecorator.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManager.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/rdbms/persistence/finder/stubDatabaseFinder.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/rdbms/persistence/finder/stubDatabaseFinderResult.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/rdbms/persistence/serializer/stubDatabaseSerializer.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/rdbms/querybuilder/stubDatabaseMySQLQueryBuilder.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/rdbms/stubDatabaseStatement.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/util/net/http/stubHTTPURL.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/util/net/stubURL.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/util/validators/stubExtFilterValidator.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/util/xjconf/stubConfigXJConfExtension.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfLoader.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/websites/memphis/stubMemphisTemplate.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/unserializer/stubXMLUnserializer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/auth/stubAuth.php
r1301 r1311 69 69 * creates and returns an auth instance 70 70 * 71 * @param stubAuthStrategy $strategy strategy to be used for authentification 72 * @param stubAuthStorage $storage storage to be used for storing the result 73 * @param string $id id of the auth instance to create 71 * @param stubAuthStrategy $strategy strategy to be used for authentification 72 * @param stubAuthStorage $storage storage to be used for storing the result 73 * @param string $id id of the auth instance to create 74 * @return stubAuth 74 75 */ 75 76 public static function createInstance(stubAuthStrategy $strategy, stubAuthStorage $storage, $id = self::ID_DEFAULT) … … 90 91 * If the instance does not exist a stubAuthException will be thrown. 91 92 * 92 * @param string $id id of the auth instance 93 * @param string $id id of the auth instance 94 * @return stubAuth 93 95 * @throws stubAuthException 94 96 */ trunk/src/main/php/net/stubbles/events/stubEventDispatcher.php
r1301 r1311 202 202 * checks if an event listener is registered for an event 203 203 * 204 * @param stubEventListener $eventListener listener that should be checked 205 * @param string $eventName event for which listener should be checked 204 * @param stubEventListener $eventListener listener that should be checked 205 * @param string $eventName event for which listener should be checked 206 * @return bool 206 207 */ 207 208 public function has(stubEventListener $eventListener, $eventName) trunk/src/main/php/net/stubbles/ipo/request/stubRequestPrefixDecorator.php
r1301 r1311 371 371 * check whether the prefix has to be applied for requested source 372 372 * 373 * @param int $source can be any of stubRequest::SOURCE_* or a combination of them (bit value) 373 * @param int $source can be any of stubRequest::SOURCE_* or a combination of them (bit value) 374 * @return bool 374 375 */ 375 376 protected function applyPrefix($source) trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManager.php
r1296 r1311 72 72 * are no two interfaces with the same name. 73 73 * 74 * @param stubBaseReflectionClass $type 75 * @see net::stubbles::ioc::stubInjectionProvider::get() 74 * @param stubBaseReflectionClass $type 75 * @return object 76 * @see net::stubbles::ioc::stubInjectionProvider::get() 76 77 */ 77 78 public function get(stubBaseReflectionClass $type) … … 94 95 * 95 96 * @param string|stubReflectionClass $interface 97 * @return object 96 98 * @throws stubConfigurationException 97 99 */ trunk/src/main/php/net/stubbles/rdbms/persistence/finder/stubDatabaseFinder.php
r1281 r1311 148 148 * helper method to retrieve the data for a given select instance 149 149 * 150 * @param stubDatabaseSelect $select151 150 * @param stubBaseReflectionClass $entityClass 151 * @param stubSetterMethodHelper $setterMethodHelper 152 * @param stubCriterion $criterion optional 153 * @param array $primaryKeys optional 152 154 * @return array 153 155 * @throws stubDatabaseFinderException … … 192 194 * @param stubBaseReflectionClass $entityClass 193 195 * @param stubSetterMethodHelper $setterMethodHelper 196 * @param array $primaryKeys optional 194 197 * @return stubDatabaseSelect 195 198 * @throws stubDatabaseFinderException trunk/src/main/php/net/stubbles/rdbms/persistence/finder/stubDatabaseFinderResult.php
r1225 r1311 71 71 /** 72 72 * returns amount of found entities 73 * 74 * @return int 73 75 */ 74 76 public function count() trunk/src/main/php/net/stubbles/rdbms/persistence/serializer/stubDatabaseSerializer.php
r1281 r1311 318 318 * 319 319 * @param array<string,string> $queries list of queries to process 320 * @param object $entity the entity to process the queries for321 * @param array<string,string> $singlePrimaryKey optional information about the single primary key322 320 * @throws stubDatabaseException 323 321 */ trunk/src/main/php/net/stubbles/rdbms/querybuilder/stubDatabaseMySQLQueryBuilder.php
r1225 r1311 186 186 * 187 187 * @param stubDatabaseTableDescription $tableDescription 188 * @return string 188 189 * @throws stubDatabaseQueryBuilderException 189 190 */ trunk/src/main/php/net/stubbles/rdbms/stubDatabaseStatement.php
r1281 r1311 24 24 * used, not the value at the time when this method is called. 25 25 * 26 * @param int|string $param the order number of the parameter or its name27 * @param mixed $variable the variable to bind to the parameter28 * @param int|string $type optional type of the parameter29 * @param int $length optional length of the data type26 * @param int|string $param the order number of the parameter or its name 27 * @param mixed &$variable the variable to bind to the parameter 28 * @param int|string $type optional type of the parameter 29 * @param int $length optional length of the data type 30 30 * @return bool true on success, false on failure 31 31 * @throws stubDatabaseException … … 50 50 * executes a prepared statement 51 51 * 52 * @param array $values optional specifies all necessary information for bindParam()53 * the array elements must use keys corresponding to the54 * number of the position or name of the parameter52 * @param array $values optional specifies all necessary information for bindParam() 53 * the array elements must use keys corresponding to the 54 * number of the position or name of the parameter 55 55 * @return stubDatabaseResult 56 56 * @throws stubDatabaseException trunk/src/main/php/net/stubbles/util/net/http/stubHTTPURL.php
r1291 r1311 39 39 * parses an url out of a string 40 40 * 41 * @param string $urlString 41 * @param string $urlString 42 * @return stubHTTPURL 42 43 * @throws stubMalformedURLException 43 44 */ trunk/src/main/php/net/stubbles/util/net/stubURL.php
r1230 r1311 56 56 * parses an url out of a string 57 57 * 58 * @param string $urlString 58 * @param string $urlString 59 * @return stubURL 59 60 * @throws stubMalformedURLException 60 61 */ trunk/src/main/php/net/stubbles/util/validators/stubExtFilterValidator.php
r1296 r1311 41 41 * constructor 42 42 * 43 * @param int|double $min minimum value 43 * @param string $filter name of filter to apply 44 * @param array $options optional options for the filter 45 * @param int $flags optional flags for the filter 44 46 */ 45 public function __construct($filter, $options = array(), $flags = FILTER_FLAG_NONE)47 public function __construct($filter, array $options = array(), $flags = FILTER_FLAG_NONE) 46 48 { 47 49 $this->filter = $filter; … … 62 64 return false; 63 65 } 66 64 67 return true; 65 68 } trunk/src/main/php/net/stubbles/util/xjconf/stubConfigXJConfExtension.php
r1301 r1311 67 67 * Process the end element 68 68 * 69 * @param XmlParser $parser 70 * @param Tag $tag 69 * @param XmlParser $parser 70 * @param Tag $tag 71 * @return GenericTag 71 72 * @throws XJConfException 72 73 */ trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfLoader.php
r1230 r1311 70 70 * returns short class name 71 71 * 72 * @param string $fqClassName the full qualified class name 72 * @param string $fqClassName the full qualified class name 73 * @return string 73 74 */ 74 75 public function getType($fqClassName) trunk/src/main/php/net/stubbles/websites/memphis/stubMemphisTemplate.php
r1281 r1311 136 136 * $variables has to be an assotiative array containing variable/value pairs. 137 137 * 138 * @param string $template name of the template 139 * @param array $variables assotiative array of the variables 140 * @param string $prefix optional prefix for all variable names 138 * @param string $template name of the template 139 * @param array $variables assotiative array of the variables 140 * @param string $prefix optional prefix for all variable names 141 * @return bool 141 142 */ 142 143 public function addVars($template, $variables, $prefix = '') trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php
r1307 r1311 76 76 * @param stubReflectionMethod $method 77 77 * @param mixed $returnValue 78 * @return string|bool 78 79 * @throws stubXMLException 79 80 */ trunk/src/main/php/net/stubbles/xml/unserializer/stubXMLUnserializer.php
r1301 r1311 248 248 * converts it to the correct type. 249 249 * 250 * @param string $namespaceURI namespace of end tag 251 * @param string $sName name of end tag 250 * @param string $namespaceURI namespace of end tag 251 * @param string $sName name of end tag 252 * @return mixed 252 253 */ 253 254 protected function endElement($namespaceURI, $sName)
