Skip to content

Commit

Permalink
Using @SInCE
Browse files Browse the repository at this point in the history
  • Loading branch information
boekkooi committed Jun 11, 2015
1 parent 291c9a8 commit 9c24391
Show file tree
Hide file tree
Showing 83 changed files with 4,231 additions and 2,841 deletions.
142 changes: 90 additions & 52 deletions Core.php

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions Core_c.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface Traversable {
interface IteratorAggregate extends Traversable {

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Retrieve an external iterator
* @link http://php.net/manual/en/iteratoraggregate.getiterator.php
* @return Traversable An instance of an object implementing <b>Iterator</b> or
Expand All @@ -40,31 +40,31 @@ public function getIterator();
interface Iterator extends Traversable {

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Return the current element
* @link http://php.net/manual/en/iterator.current.php
* @return mixed Can return any type.
*/
public function current();

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Move forward to next element
* @link http://php.net/manual/en/iterator.next.php
* @return void Any returned value is ignored.
*/
public function next();

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Return the key of the current element
* @link http://php.net/manual/en/iterator.key.php
* @return mixed scalar on success, or null on failure.
*/
public function key();

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php
* @return boolean The return value will be casted to boolean and then evaluated.
Expand All @@ -73,7 +73,7 @@ public function key();
public function valid();

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Rewind the Iterator to the first element
* @link http://php.net/manual/en/iterator.rewind.php
* @return void Any returned value is ignored.
Expand All @@ -88,7 +88,7 @@ public function rewind();
interface ArrayAccess {

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Whether a offset exists
* @link http://php.net/manual/en/arrayaccess.offsetexists.php
* @param mixed $offset <p>
Expand All @@ -102,7 +102,7 @@ interface ArrayAccess {
public function offsetExists($offset);

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Offset to retrieve
* @link http://php.net/manual/en/arrayaccess.offsetget.php
* @param mixed $offset <p>
Expand All @@ -113,7 +113,7 @@ public function offsetExists($offset);
public function offsetGet($offset);

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Offset to set
* @link http://php.net/manual/en/arrayaccess.offsetset.php
* @param mixed $offset <p>
Expand All @@ -127,7 +127,7 @@ public function offsetGet($offset);
public function offsetSet($offset, $value);

/**
* (PHP 5 &gt;= 5.0.0)<br/>
* @since 5.0.0
* Offset to unset
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
* @param mixed $offset <p>
Expand All @@ -145,15 +145,15 @@ public function offsetUnset($offset);
interface Serializable {

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* String representation of object
* @link http://php.net/manual/en/serializable.serialize.php
* @return string the string representation of the object or null
*/
public function serialize();

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Constructs the object
* @link http://php.net/manual/en/serializable.unserialize.php
* @param string $serialized <p>
Expand All @@ -177,15 +177,15 @@ class Exception {


/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Clone the exception
* @link http://php.net/manual/en/exception.clone.php
* @return void
*/
final private function __clone() { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Construct the exception. Note: The message is NOT binary safe.
* @link http://php.net/manual/en/exception.construct.php
* @param string $message [optional] The Exception message to throw.
Expand All @@ -195,15 +195,15 @@ final private function __clone() { }
public function __construct($message = "", $code = 0, Exception $previous = null) { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Gets the Exception message
* @link http://php.net/manual/en/exception.getmessage.php
* @return string the Exception message as a string.
*/
final public function getMessage() { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Gets the Exception code
* @link http://php.net/manual/en/exception.getcode.php
* @return mixed|int the exception code as integer in
Expand All @@ -214,31 +214,31 @@ final public function getMessage() { }
final public function getCode() { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Gets the file in which the exception occurred
* @link http://php.net/manual/en/exception.getfile.php
* @return string the filename in which the exception was created.
*/
final public function getFile() { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Gets the line in which the exception occurred
* @link http://php.net/manual/en/exception.getline.php
* @return int the line number where the exception was created.
*/
final public function getLine() { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Gets the stack trace
* @link http://php.net/manual/en/exception.gettrace.php
* @return array the Exception stack trace as an array.
*/
final public function getTrace() { }

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Returns previous Exception
* @link http://php.net/manual/en/exception.getprevious.php
* @return Exception the previous <b>Exception</b> if available
Expand All @@ -247,15 +247,15 @@ final public function getTrace() { }
final public function getPrevious() { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Gets the stack trace as a string
* @link http://php.net/manual/en/exception.gettraceasstring.php
* @return string the Exception stack trace as a string.
*/
final public function getTraceAsString() { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* String representation of the exception
* @link http://php.net/manual/en/exception.tostring.php
* @return string the string representation of the exception.
Expand All @@ -273,7 +273,7 @@ class ErrorException extends Exception {


/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Constructs the exception
* @link http://php.net/manual/en/errorexception.construct.php
* @param string $message [optional] The Exception message to throw.
Expand All @@ -286,7 +286,7 @@ class ErrorException extends Exception {
public function __construct($message = "", $code = 0, $severity = 1, $filename = __FILE__, $lineno = __LINE__, $previous) { }

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Gets the exception severity
* @link http://php.net/manual/en/errorexception.getseverity.php
* @return int the severity level of the exception.
Expand Down
4 changes: 2 additions & 2 deletions PDO.php
Original file line number Diff line number Diff line change
Expand Up @@ -367,13 +367,13 @@ class PDO {
const ATTR_MAX_COLUMN_LEN = 18;

/**
* Available since PHP 5.1.3.
* @since 5.1.3
* @link http://php.net/manual/en/pdo.constants.php
*/
const ATTR_EMULATE_PREPARES = 20;

/**
* Available since PHP 5.2.0
* @since 5.2.0
* @link http://php.net/manual/en/pdo.constants.php
*/
const ATTR_DEFAULT_FETCH_MODE = 19;
Expand Down
32 changes: 16 additions & 16 deletions Phar.php
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ final public static function unlinkArchive ($archive) {}
final public static function webPhar ($alias = null, $index = "index.php", $f404 = null, array $mimetypes = null, callable $rewrites = null) {}

/**
* (PHP 5)<br/>
* @since 5.0
* Returns whether current entry is a directory and not '.' or '..'
* @link http://php.net/manual/en/recursivedirectoryiterator.haschildren.php
* @param bool $allow_links [optional] <p>
Expand All @@ -813,7 +813,7 @@ final public static function webPhar ($alias = null, $index = "index.php", $f404
public function hasChildren ($allow_links = false) {}

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Returns an iterator for the current entry if it is a directory
* @link http://php.net/manual/en/recursivedirectoryiterator.getchildren.php
* @return mixed The filename, file information, or $this depending on the set flags.
Expand All @@ -823,23 +823,23 @@ public function hasChildren ($allow_links = false) {}
public function getChildren () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Rewinds back to the beginning
* @link http://php.net/manual/en/filesystemiterator.rewind.php
* @return void No value is returned.
*/
public function rewind () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Move to the next file
* @link http://php.net/manual/en/filesystemiterator.next.php
* @return void No value is returned.
*/
public function next () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Retrieve the key for the current file
* @link http://php.net/manual/en/filesystemiterator.key.php
* @return string the pathname or filename depending on the set flags.
Expand All @@ -848,7 +848,7 @@ public function next () {}
public function key () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* The current file
* @link http://php.net/manual/en/filesystemiterator.current.php
* @return mixed The filename, file information, or $this depending on the set flags.
Expand All @@ -857,15 +857,15 @@ public function key () {}
public function current () {}

/**
* (PHP 5)<br/>
* @since 5.0
* Check whether current DirectoryIterator position is a valid file
* @link http://php.net/manual/en/directoryiterator.valid.php
* @return bool <b>TRUE</b> if the position is valid, otherwise <b>FALSE</b>
*/
public function valid () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Seek to a DirectoryIterator item
* @link http://php.net/manual/en/directoryiterator.seek.php
* @param int $position <p>
Expand Down Expand Up @@ -941,7 +941,7 @@ public function offsetUnset ($offset) {}


/**
* (PHP 5)<br/>
* @since 5.0
* Returns whether current entry is a directory and not '.' or '..'
* @link http://php.net/manual/en/recursivedirectoryiterator.haschildren.php
* @param bool $allow_links [optional] <p>
Expand All @@ -951,7 +951,7 @@ public function offsetUnset ($offset) {}
public function hasChildren ($allow_links = false) {}

/**
* (PHP 5 &gt;= 5.1.0)<br/>
* @since 5.1.0
* Returns an iterator for the current entry if it is a directory
* @link http://php.net/manual/en/recursivedirectoryiterator.getchildren.php
* @return mixed The filename, file information, or $this depending on the set flags.
Expand All @@ -962,23 +962,23 @@ public function getChildren () {}


/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Rewinds back to the beginning
* @link http://php.net/manual/en/filesystemiterator.rewind.php
* @return void No value is returned.
*/
public function rewind () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Move to the next file
* @link http://php.net/manual/en/filesystemiterator.next.php
* @return void No value is returned.
*/
public function next () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Retrieve the key for the current file
* @link http://php.net/manual/en/filesystemiterator.key.php
* @return string the pathname or filename depending on the set flags.
Expand All @@ -987,7 +987,7 @@ public function next () {}
public function key () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* The current file
* @link http://php.net/manual/en/filesystemiterator.current.php
* @return mixed The filename, file information, or $this depending on the set flags.
Expand All @@ -998,15 +998,15 @@ public function current () {}


/**
* (PHP 5)<br/>
* @since 5.0
* Check whether current DirectoryIterator position is a valid file
* @link http://php.net/manual/en/directoryiterator.valid.php
* @return bool <b>TRUE</b> if the position is valid, otherwise <b>FALSE</b>
*/
public function valid () {}

/**
* (PHP 5 &gt;= 5.3.0)<br/>
* @since 5.3.0
* Seek to a DirectoryIterator item
* @link http://php.net/manual/en/directoryiterator.seek.php
* @param int $position <p>
Expand Down
Loading

0 comments on commit 9c24391

Please sign in to comment.