mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
correct missed cs errors
This commit is contained in:
parent
e544340d67
commit
b150e33472
3 changed files with 9 additions and 0 deletions
|
@ -246,6 +246,8 @@ class CacheTest extends CakeTestCase {
|
|||
|
||||
/**
|
||||
* testGroupConfigs method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testGroupConfigs() {
|
||||
Cache::config('latest', array(
|
||||
|
@ -299,7 +301,9 @@ class CacheTest extends CakeTestCase {
|
|||
|
||||
/**
|
||||
* testGroupConfigsThrowsException method
|
||||
*
|
||||
* @expectedException CacheException
|
||||
* @return void
|
||||
*/
|
||||
public function testGroupConfigsThrowsException() {
|
||||
Cache::groupConfigs('bogus');
|
||||
|
|
|
@ -510,6 +510,7 @@ class CakeLogTest extends CakeTestCase {
|
|||
/**
|
||||
* test bogus type and scope
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testBogusTypeAndScope() {
|
||||
$this->_resetLogConfig();
|
||||
|
@ -536,6 +537,8 @@ class CakeLogTest extends CakeTestCase {
|
|||
|
||||
/**
|
||||
* test scoped logging with convenience methods
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testConvenienceScopedLogging() {
|
||||
if (file_exists(LOGS . 'shops.log')) {
|
||||
|
|
|
@ -208,6 +208,8 @@ class TextHelperTest extends CakeTestCase {
|
|||
|
||||
/**
|
||||
* Data provider for autoLinking
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function autoLinkProvider() {
|
||||
return array(
|
||||
|
|
Loading…
Reference in a new issue