mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
commit
e876906795
21 changed files with 32 additions and 20 deletions
|
@ -247,6 +247,7 @@ class ExtractTask extends AppShell {
|
|||
* @param string $domain
|
||||
* @param string $msgid
|
||||
* @param array $details
|
||||
* @return void
|
||||
*/
|
||||
protected function _addTranslation($domain, $msgid, $details = array()) {
|
||||
if (empty($this->_translations[$domain][$msgid])) {
|
||||
|
|
|
@ -96,6 +96,7 @@ class ConsoleErrorHandler {
|
|||
* Wrapper for exit(), used for testing.
|
||||
*
|
||||
* @param int $code The exit code.
|
||||
* @return void
|
||||
*/
|
||||
protected function _stop($code = 0) {
|
||||
exit($code);
|
||||
|
|
|
@ -28,6 +28,7 @@ interface AclInterface {
|
|||
* @param string $aro ARO The requesting object identifier.
|
||||
* @param string $aco ACO The controlled object identifier.
|
||||
* @param string $action Action (defaults to *)
|
||||
* @return boolean Success
|
||||
*/
|
||||
public function check($aro, $aco, $action = "*");
|
||||
|
||||
|
@ -65,6 +66,7 @@ interface AclInterface {
|
|||
* Initialization method for the Acl implementation
|
||||
*
|
||||
* @param AclComponent $component
|
||||
* @return void
|
||||
*/
|
||||
public function initialize(Component $component);
|
||||
|
||||
|
|
|
@ -255,8 +255,8 @@ class CakeLog {
|
|||
* }}}
|
||||
*
|
||||
* @param array $levels array
|
||||
* @param bool $append true to append, false to replace
|
||||
* @return array active log levels
|
||||
* @param boolean $append true to append, false to replace
|
||||
* @return array Active log levels
|
||||
*/
|
||||
public static function levels($levels = array(), $append = true) {
|
||||
if (empty(self::$_Collection)) {
|
||||
|
@ -278,7 +278,7 @@ class CakeLog {
|
|||
/**
|
||||
* Reset log levels to the original value
|
||||
*
|
||||
* @return array default log levels
|
||||
* @return array Default log levels
|
||||
*/
|
||||
public static function defaultLevels() {
|
||||
self::$_levelMap = self::$_defaultLevels;
|
||||
|
@ -304,7 +304,7 @@ class CakeLog {
|
|||
* Checks whether $streamName is enabled
|
||||
*
|
||||
* @param string $streamName to check
|
||||
* @return bool
|
||||
* @return boolean
|
||||
* @throws CakeLogException
|
||||
*/
|
||||
public static function enabled($streamName) {
|
||||
|
|
|
@ -628,6 +628,7 @@ class TranslateBehavior extends ModelBehavior {
|
|||
*
|
||||
* @param Model $Model Model instance
|
||||
* @param string $field The field to update.
|
||||
* @return void
|
||||
*/
|
||||
protected function _removeField(Model $Model, $field) {
|
||||
if (array_key_exists($field, $this->settings[$Model->alias])) {
|
||||
|
|
|
@ -331,6 +331,7 @@ class CakeValidationSet implements ArrayAccess, IteratorAggregate, Countable {
|
|||
*
|
||||
* @param string $index name of the rule
|
||||
* @param CakeValidationRule|array rule to add to $index
|
||||
* @return void
|
||||
*/
|
||||
public function offsetSet($index, $rule) {
|
||||
$this->setRule($index, $rule);
|
||||
|
|
|
@ -673,7 +673,7 @@ class CakeRequest implements ArrayAccess {
|
|||
*
|
||||
* @param integer $tldLength Number of segments your tld contains. For example: `example.com` contains 1 tld.
|
||||
* While `example.co.uk` contains 2.
|
||||
* @return array of subdomains.
|
||||
* @return array An array of subdomains.
|
||||
*/
|
||||
public function subdomains($tldLength = 1) {
|
||||
$segments = explode('.', $this->host());
|
||||
|
|
|
@ -186,6 +186,7 @@ class CakeSocket {
|
|||
*
|
||||
* @param int $code
|
||||
* @param string $message
|
||||
* @return void
|
||||
*/
|
||||
protected function _connectionErrorHandler($code, $message) {
|
||||
$this->_connectionErrors[] = $message;
|
||||
|
|
|
@ -498,7 +498,7 @@ class DbAclTest extends CakeTestCase {
|
|||
* Generates a list of the current aro and aco structures and a grid dump of the permissions that are defined
|
||||
* Only designed to work with the db based ACL
|
||||
*
|
||||
* @param bool $treesToo
|
||||
* @param boolean $treesToo
|
||||
* @return void
|
||||
*/
|
||||
protected function _debug($printTreesToo = false) {
|
||||
|
|
|
@ -447,7 +447,7 @@ class ConfigureTest extends CakeTestCase {
|
|||
/**
|
||||
* Test dumping only some of the data.
|
||||
*
|
||||
* @return
|
||||
* @return void
|
||||
*/
|
||||
public function testDumpPartial() {
|
||||
Configure::config('test_reader', new PhpReader(TMP));
|
||||
|
|
|
@ -194,7 +194,7 @@ class I18nTest extends CakeTestCase {
|
|||
/**
|
||||
* Assertions for rules zero.
|
||||
*
|
||||
* @return
|
||||
* @return void
|
||||
*/
|
||||
public function assertRulesZero() {
|
||||
$singular = $this->__singular();
|
||||
|
|
|
@ -184,7 +184,7 @@ class TestBehavior extends ModelBehavior {
|
|||
* afterValidate method
|
||||
*
|
||||
* @param Model $model
|
||||
* @param bool $cascade
|
||||
* @param boolean $cascade
|
||||
* @return void
|
||||
*/
|
||||
public function afterValidate(Model $model) {
|
||||
|
@ -205,7 +205,7 @@ class TestBehavior extends ModelBehavior {
|
|||
* beforeDelete method
|
||||
*
|
||||
* @param Model $model
|
||||
* @param bool $cascade
|
||||
* @param boolean $cascade
|
||||
* @return void
|
||||
*/
|
||||
public function beforeDelete(Model $model, $cascade = true) {
|
||||
|
@ -277,7 +277,7 @@ class TestBehavior extends ModelBehavior {
|
|||
* testMethod method
|
||||
*
|
||||
* @param Model $model
|
||||
* @param bool $param
|
||||
* @param boolean $param
|
||||
* @return void
|
||||
*/
|
||||
public function testMethod(Model $model, $param = true) {
|
||||
|
|
|
@ -2508,7 +2508,7 @@ class MysqlTest extends CakeTestCase {
|
|||
/**
|
||||
* Test that array conditions with only one element work.
|
||||
*
|
||||
* @return
|
||||
* @return void
|
||||
*/
|
||||
public function testArrayConditionsOneElement() {
|
||||
$conditions = array('id' => array(1));
|
||||
|
|
|
@ -3765,7 +3765,7 @@ class ModelReadTest extends BaseModelTest {
|
|||
/**
|
||||
* Test find(neighbors) with missing fields so no neighbors are found.
|
||||
*
|
||||
* @return
|
||||
* @return void
|
||||
*/
|
||||
public function testFindNeighborsNoPrev() {
|
||||
$this->loadFixtures('User', 'Article', 'Comment', 'Tag', 'ArticlesTag', 'Attachment');
|
||||
|
@ -3786,6 +3786,7 @@ class ModelReadTest extends BaseModelTest {
|
|||
);
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* testFindCombinedRelations method
|
||||
*
|
||||
|
|
|
@ -2547,7 +2547,7 @@ class NumberTree extends CakeTestModel {
|
|||
* @param mixed $currentLevel
|
||||
* @param mixed $parent_id
|
||||
* @param string $prefix
|
||||
* @param bool $hierarchal
|
||||
* @param boolean $hierarchal
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($levelLimit = 3, $childLimit = 3, $currentLevel = null, $parentId = null, $prefix = '1', $hierarchal = true) {
|
||||
|
|
|
@ -33,7 +33,8 @@ class TestCakeRequest extends CakeRequest {
|
|||
* reConstruct method
|
||||
*
|
||||
* @param string $url
|
||||
* @param bool $parseEnvironment
|
||||
* @param boolean $parseEnvironment
|
||||
* @return void
|
||||
*/
|
||||
public function reConstruct($url = 'some/path', $parseEnvironment = true) {
|
||||
$this->_base();
|
||||
|
@ -2105,6 +2106,7 @@ XML;
|
|||
/**
|
||||
* Test onlyAllow throwing exception
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testOnlyAllowException() {
|
||||
$_SERVER['REQUEST_METHOD'] = 'PUT';
|
||||
|
|
|
@ -543,7 +543,7 @@ class FileTest extends CakeTestCase {
|
|||
/**
|
||||
* getTmpFile method
|
||||
*
|
||||
* @param bool $paintSkip
|
||||
* @param boolean $paintSkip
|
||||
* @return void
|
||||
*/
|
||||
protected function _getTmpFile($paintSkip = true) {
|
||||
|
|
|
@ -265,7 +265,7 @@ class SecurityTest extends CakeTestCase {
|
|||
/**
|
||||
* Test that rijndael() can still decrypt values with a fixed iv.
|
||||
*
|
||||
* @return
|
||||
* @return void
|
||||
*/
|
||||
public function testRijndaelBackwardCompatibility() {
|
||||
$this->skipIf(!function_exists('mcrypt_encrypt'));
|
||||
|
|
|
@ -309,7 +309,7 @@ class HelperTest extends CakeTestCase {
|
|||
/**
|
||||
* test setEntity with setting a scope.
|
||||
*
|
||||
* @return
|
||||
* @return void
|
||||
*/
|
||||
public function testSetEntityScoped() {
|
||||
$this->Helper->setEntity('HelperTestPost', true);
|
||||
|
|
|
@ -94,9 +94,9 @@ class XmlView extends View {
|
|||
}
|
||||
|
||||
/**
|
||||
* Serialize view vars
|
||||
* Serialize view vars.
|
||||
*
|
||||
* @param array $serialize The viewVars that need to be serialized
|
||||
* @param array $serialize The viewVars that need to be serialized.
|
||||
* @return string The serialized data
|
||||
*/
|
||||
protected function _serialize($serialize) {
|
||||
|
|
|
@ -68,6 +68,7 @@ if (!function_exists('debug')) {
|
|||
* @param boolean $var Variable to show debug information for.
|
||||
* @param boolean $showHtml If set to true, the method prints the debug data in a browser-friendly way.
|
||||
* @param boolean $showFrom If set to true, the method prints from where the function was called.
|
||||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/development/debugging.html#basic-debugging
|
||||
* @link http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#debug
|
||||
*/
|
||||
|
@ -235,6 +236,7 @@ if (!function_exists('pr')) {
|
|||
*
|
||||
* @see debug()
|
||||
* @param array $var Variable to print out
|
||||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#pr
|
||||
*/
|
||||
function pr($var) {
|
||||
|
|
Loading…
Reference in a new issue