From b5655d63ff554fc956abb07f8d3663f5373c399b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=BCrth?= Date: Wed, 10 Feb 2016 12:27:34 +0100 Subject: [PATCH] Remove lighthouse references --- lib/Cake/Network/CakeRequest.php | 1 - lib/Cake/Test/Case/Controller/Component/AuthComponentTest.php | 2 -- .../Case/Controller/Component/RequestHandlerComponentTest.php | 1 - .../Test/Case/Controller/Component/SecurityComponentTest.php | 2 -- lib/Cake/Test/Case/Core/AppTest.php | 1 - lib/Cake/Test/Case/Model/ModelWriteTest.php | 3 --- lib/Cake/Test/Case/Network/CakeRequestTest.php | 1 - lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php | 1 - lib/Cake/Test/Case/View/ViewTest.php | 1 - 9 files changed, 13 deletions(-) diff --git a/lib/Cake/Network/CakeRequest.php b/lib/Cake/Network/CakeRequest.php index 05b0ad24a..cd9e893bd 100644 --- a/lib/Cake/Network/CakeRequest.php +++ b/lib/Cake/Network/CakeRequest.php @@ -288,7 +288,6 @@ class CakeRequest implements ArrayAccess { * the unnecessary part from $base to prevent issue #3318. * * @return string Base URL - * @link https://cakephp.lighthouseapp.com/projects/42648-cakephp/tickets/3318 */ protected function _base() { $dir = $webroot = null; diff --git a/lib/Cake/Test/Case/Controller/Component/AuthComponentTest.php b/lib/Cake/Test/Case/Controller/Component/AuthComponentTest.php index 8faae470a..0ff514df6 100644 --- a/lib/Cake/Test/Case/Controller/Component/AuthComponentTest.php +++ b/lib/Cake/Test/Case/Controller/Component/AuthComponentTest.php @@ -1621,8 +1621,6 @@ class AuthComponentTest extends CakeTestCase { /** * test that the returned URL doesn't contain the base URL. * - * @see https://cakephp.lighthouseapp.com/projects/42648/tickets/3922-authcomponentredirecturl-prepends-appbaseurl - * * @return void This test method doesn't return anything. */ public function testRedirectUrlWithBaseSet() { diff --git a/lib/Cake/Test/Case/Controller/Component/RequestHandlerComponentTest.php b/lib/Cake/Test/Case/Controller/Component/RequestHandlerComponentTest.php index aa20baeff..1e9f8daaf 100644 --- a/lib/Cake/Test/Case/Controller/Component/RequestHandlerComponentTest.php +++ b/lib/Cake/Test/Case/Controller/Component/RequestHandlerComponentTest.php @@ -870,7 +870,6 @@ class RequestHandlerComponentTest extends CakeTestCase { * array URLs into their correct string ones, and adds base => false so * the correct URLs are generated. * - * @link https://cakephp.lighthouseapp.com/projects/42648-cakephp-1x/tickets/276 * @return void */ public function testBeforeRedirectCallbackWithArrayUrl() { diff --git a/lib/Cake/Test/Case/Controller/Component/SecurityComponentTest.php b/lib/Cake/Test/Case/Controller/Component/SecurityComponentTest.php index e579b6c05..520b90098 100644 --- a/lib/Cake/Test/Case/Controller/Component/SecurityComponentTest.php +++ b/lib/Cake/Test/Case/Controller/Component/SecurityComponentTest.php @@ -1164,7 +1164,6 @@ class SecurityComponentTest extends CakeTestCase { * the params. * * @return void - * @see https://cakephp.lighthouseapp.com/projects/42648/tickets/68 */ public function testSettingTokenForRequestAction() { $this->Controller->Security->startup($this->Controller); @@ -1181,7 +1180,6 @@ class SecurityComponentTest extends CakeTestCase { * test that blackhole doesn't delete the _Token session key so repeat data submissions * stay blackholed. * - * @link https://cakephp.lighthouseapp.com/projects/42648/tickets/214 * @return void */ public function testBlackHoleNotDeletingSessionInformation() { diff --git a/lib/Cake/Test/Case/Core/AppTest.php b/lib/Cake/Test/Case/Core/AppTest.php index ecaa4bd92..9e771bdb6 100644 --- a/lib/Cake/Test/Case/Core/AppTest.php +++ b/lib/Cake/Test/Case/Core/AppTest.php @@ -576,7 +576,6 @@ class AppTest extends CakeTestCase { * test that building helper paths actually works. * * @return void - * @link https://cakephp.lighthouseapp.com/projects/42648/tickets/410 */ public function testImportingHelpersFromAlternatePaths() { $this->assertFalse(class_exists('BananaHelper', false), 'BananaHelper exists, cannot test importing it.'); diff --git a/lib/Cake/Test/Case/Model/ModelWriteTest.php b/lib/Cake/Test/Case/Model/ModelWriteTest.php index 70ca570e9..92c1f4a08 100644 --- a/lib/Cake/Test/Case/Model/ModelWriteTest.php +++ b/lib/Cake/Test/Case/Model/ModelWriteTest.php @@ -5313,7 +5313,6 @@ class ModelWriteTest extends BaseModelTest { /** * test that saveAll behaves like plain save() when supplied empty data * - * @link https://cakephp.lighthouseapp.com/projects/42648/tickets/277-test-saveall-with-validation-returns-incorrect-boolean-when-saving-empty-data * @return void */ public function testSaveAllEmptyData() { @@ -6781,7 +6780,6 @@ class ModelWriteTest extends BaseModelTest { /** * test that saveMany behaves like plain save() when suplied empty data * - * @link https://cakephp.lighthouseapp.com/projects/42648/tickets/277-test-saveall-with-validation-returns-incorrect-boolean-when-saving-empty-data * @return void */ public function testSaveManyEmptyData() { @@ -6800,7 +6798,6 @@ class ModelWriteTest extends BaseModelTest { /** * test that saveAssociated behaves like plain save() when supplied empty data * - * @link https://cakephp.lighthouseapp.com/projects/42648/tickets/277-test-saveall-with-validation-returns-incorrect-boolean-when-saving-empty-data * @return void */ public function testSaveAssociatedEmptyData() { diff --git a/lib/Cake/Test/Case/Network/CakeRequestTest.php b/lib/Cake/Test/Case/Network/CakeRequestTest.php index 7d1d0706c..684f4286b 100644 --- a/lib/Cake/Test/Case/Network/CakeRequestTest.php +++ b/lib/Cake/Test/Case/Network/CakeRequestTest.php @@ -1362,7 +1362,6 @@ class CakeRequestTest extends CakeTestCase { * - index.php/apples/ * - index.php/bananas/eat/tasty_banana * - * @link https://cakephp.lighthouseapp.com/projects/42648-cakephp/tickets/3318 * @return void */ public function testBaseUrlWithModRewriteAndIndexPhp() { diff --git a/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php b/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php index efd8878d8..41e158ed8 100644 --- a/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php +++ b/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php @@ -596,7 +596,6 @@ class ControllerTestCaseTest extends CakeTestCase { * will always have a fresh reference to those object available * * @return void - * @see https://cakephp.lighthouseapp.com/projects/42648-cakephp/tickets/2705-requesthandler-weird-behavior */ public function testComponentsSameRequestAndResponse() { $this->Case->generate('TestsApps'); diff --git a/lib/Cake/Test/Case/View/ViewTest.php b/lib/Cake/Test/Case/View/ViewTest.php index 4973c688f..fc229464f 100644 --- a/lib/Cake/Test/Case/View/ViewTest.php +++ b/lib/Cake/Test/Case/View/ViewTest.php @@ -1460,7 +1460,6 @@ class ViewTest extends CakeTestCase { * Test setting a block's content to null * * @return void - * @link https://cakephp.lighthouseapp.com/projects/42648/tickets/3938-this-redirectthis-auth-redirecturl-broken */ public function testBlockSetNull() { $this->View->assign('testWithNull', null);