diff --git a/lib/Cake/Console/Command/TestShell.php b/lib/Cake/Console/Command/TestShell.php index 2c474b9c3..e4964137f 100644 --- a/lib/Cake/Console/Command/TestShell.php +++ b/lib/Cake/Console/Command/TestShell.php @@ -338,7 +338,6 @@ class TestShell extends Shell { * @param string $file * @param string $category * @param boolean $throwOnMissingFile - * @access protected * @return array array(type, case) * @throws Exception */ @@ -414,7 +413,6 @@ class TestShell extends Shell { * For the given file, what category of test is it? returns app, core or the name of the plugin * * @param string $file - * @access protected * @return string */ protected function _mapFileToCategory($file) { diff --git a/lib/Cake/Model/Datasource/DataSource.php b/lib/Cake/Model/Datasource/DataSource.php index 94380d7a7..52ffbed9a 100644 --- a/lib/Cake/Model/Datasource/DataSource.php +++ b/lib/Cake/Model/Datasource/DataSource.php @@ -415,7 +415,6 @@ class DataSource extends Object { * Returns the schema name. Override this in subclasses. * * @return string schema name - * @access public */ public function getSchemaName() { return null; @@ -425,7 +424,6 @@ class DataSource extends Object { * Closes a connection. Override in subclasses * * @return boolean - * @access public */ public function close() { return $this->connected = false; diff --git a/lib/Cake/Model/Model.php b/lib/Cake/Model/Model.php index 36f651467..6362166a3 100644 --- a/lib/Cake/Model/Model.php +++ b/lib/Cake/Model/Model.php @@ -95,7 +95,6 @@ class Model extends Object implements CakeEventListener { * Holds physical schema/database name for this model. Automatically set during Model creation. * * @var string - * @access public */ public $schemaName = null; diff --git a/lib/Cake/Test/Case/Core/ObjectTest.php b/lib/Cake/Test/Case/Core/ObjectTest.php index 2c4d64a36..4b3a3b6e6 100644 --- a/lib/Cake/Test/Case/Core/ObjectTest.php +++ b/lib/Cake/Test/Case/Core/ObjectTest.php @@ -49,14 +49,12 @@ class RequestActionController extends Controller { * uses property * * @var array - * @access public */ public $uses = array('RequestActionPost'); /** * test_request_action method * - * @access public * @return void */ public function test_request_action() { @@ -68,7 +66,6 @@ class RequestActionController extends Controller { * * @param mixed $id * @param mixed $other - * @access public * @return void */ public function another_ra_test($id, $other) { diff --git a/lib/Cake/Test/Case/Model/CakeSchemaTest.php b/lib/Cake/Test/Case/Model/CakeSchemaTest.php index a746a370d..99840c1a3 100644 --- a/lib/Cake/Test/Case/Model/CakeSchemaTest.php +++ b/lib/Cake/Test/Case/Model/CakeSchemaTest.php @@ -533,7 +533,6 @@ class CakeSchemaTest extends CakeTestCase { /** * testSchemaReadWithAppModel method * - * @access public * @return void */ public function testSchemaReadWithAppModel() { diff --git a/lib/Cake/Test/Case/Model/ModelIntegrationTest.php b/lib/Cake/Test/Case/Model/ModelIntegrationTest.php index fae7c967c..de05b5193 100644 --- a/lib/Cake/Test/Case/Model/ModelIntegrationTest.php +++ b/lib/Cake/Test/Case/Model/ModelIntegrationTest.php @@ -239,7 +239,6 @@ class ModelIntegrationTest extends BaseModelTest { /** * testFindWithJoinsOption method * - * @access public * @return void */ public function testFindWithJoinsOption() { diff --git a/lib/Cake/Test/Case/Model/ModelWriteTest.php b/lib/Cake/Test/Case/Model/ModelWriteTest.php index c9955d9a9..bc9fb0057 100644 --- a/lib/Cake/Test/Case/Model/ModelWriteTest.php +++ b/lib/Cake/Test/Case/Model/ModelWriteTest.php @@ -63,7 +63,6 @@ class ModelWriteTest extends BaseModelTest { /** * testInsertAnotherHabtmRecordWithSameForeignKey method * - * @access public * @return void */ public function testInsertAnotherHabtmRecordWithSameForeignKey() { @@ -511,7 +510,6 @@ class ModelWriteTest extends BaseModelTest { /** * Tests having multiple counter caches for an associated model * - * @access public * @return void */ public function testCounterCacheMultipleCaches() { diff --git a/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php b/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php index 0c99842e5..301949a73 100644 --- a/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php +++ b/lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php @@ -39,7 +39,6 @@ if (!class_exists('AppController', false)) { * helpers property * * @var array - * @access public */ public $helpers = array('Html'); @@ -47,7 +46,6 @@ if (!class_exists('AppController', false)) { * uses property * * @var array - * @access public */ public $uses = array('ControllerPost'); @@ -55,7 +53,6 @@ if (!class_exists('AppController', false)) { * components property * * @var array - * @access public */ public $components = array('Cookie'); diff --git a/lib/Cake/Test/Case/View/Helper/FormHelperTest.php b/lib/Cake/Test/Case/View/Helper/FormHelperTest.php index 51b90ce86..56b9527be 100644 --- a/lib/Cake/Test/Case/View/Helper/FormHelperTest.php +++ b/lib/Cake/Test/Case/View/Helper/FormHelperTest.php @@ -779,7 +779,6 @@ class FormHelperTest extends CakeTestCase { /** * Tests correct generation of number fields for integer fields * - * @access public * @return void */ public function testTextFieldTypeNumberGenerationForIntegers() { @@ -1525,7 +1524,6 @@ class FormHelperTest extends CakeTestCase { /** * Test validation errors, when validation message is an empty string. * - * @access public * @return void */ public function testEmptyErrorValidation() { @@ -1566,7 +1564,6 @@ class FormHelperTest extends CakeTestCase { /** * Test validation errors, when calling input() overriding validation message by an empty string. * - * @access public * @return void */ public function testEmptyInputErrorValidation() { diff --git a/lib/Cake/Test/Fixture/AccountFixture.php b/lib/Cake/Test/Fixture/AccountFixture.php index 529f6f679..fa7b416b4 100644 --- a/lib/Cake/Test/Fixture/AccountFixture.php +++ b/lib/Cake/Test/Fixture/AccountFixture.php @@ -25,13 +25,6 @@ */ class AccountFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Aco' - */ - public $name = 'Account'; - public $table = 'Accounts'; /** diff --git a/lib/Cake/Test/Fixture/AcoActionFixture.php b/lib/Cake/Test/Fixture/AcoActionFixture.php index 7b687a27c..b62eb113d 100644 --- a/lib/Cake/Test/Fixture/AcoActionFixture.php +++ b/lib/Cake/Test/Fixture/AcoActionFixture.php @@ -25,13 +25,6 @@ */ class AcoActionFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'AcoAction' - */ - public $name = 'AcoAction'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AcoFixture.php b/lib/Cake/Test/Fixture/AcoFixture.php index 2903360f6..2305b074f 100644 --- a/lib/Cake/Test/Fixture/AcoFixture.php +++ b/lib/Cake/Test/Fixture/AcoFixture.php @@ -25,13 +25,6 @@ */ class AcoFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Aco' - */ - public $name = 'Aco'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AcoTwoFixture.php b/lib/Cake/Test/Fixture/AcoTwoFixture.php index 8cacd0f1a..376a5c0fa 100644 --- a/lib/Cake/Test/Fixture/AcoTwoFixture.php +++ b/lib/Cake/Test/Fixture/AcoTwoFixture.php @@ -25,13 +25,6 @@ */ class AcoTwoFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'AcoTwo' - */ - public $name = 'AcoTwo'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AdFixture.php b/lib/Cake/Test/Fixture/AdFixture.php index dafc3474d..2e3ac4352 100644 --- a/lib/Cake/Test/Fixture/AdFixture.php +++ b/lib/Cake/Test/Fixture/AdFixture.php @@ -26,13 +26,6 @@ */ class AdFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Ad' - */ - public $name = 'Ad'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AdvertisementFixture.php b/lib/Cake/Test/Fixture/AdvertisementFixture.php index 7e0ab1192..525add271 100644 --- a/lib/Cake/Test/Fixture/AdvertisementFixture.php +++ b/lib/Cake/Test/Fixture/AdvertisementFixture.php @@ -25,13 +25,6 @@ */ class AdvertisementFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Advertisement' - */ - public $name = 'Advertisement'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AfterTreeFixture.php b/lib/Cake/Test/Fixture/AfterTreeFixture.php index b91eedf8b..36a3d1e33 100644 --- a/lib/Cake/Test/Fixture/AfterTreeFixture.php +++ b/lib/Cake/Test/Fixture/AfterTreeFixture.php @@ -26,13 +26,6 @@ */ class AfterTreeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'AfterTree' - */ - public $name = 'AfterTree'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AnotherArticleFixture.php b/lib/Cake/Test/Fixture/AnotherArticleFixture.php index 531eb05e5..8cec8c77b 100644 --- a/lib/Cake/Test/Fixture/AnotherArticleFixture.php +++ b/lib/Cake/Test/Fixture/AnotherArticleFixture.php @@ -25,13 +25,6 @@ */ class AnotherArticleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'AnotherArticle' - */ - public $name = 'AnotherArticle'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AppleFixture.php b/lib/Cake/Test/Fixture/AppleFixture.php index fa9d8d2be..60bdfcb5a 100644 --- a/lib/Cake/Test/Fixture/AppleFixture.php +++ b/lib/Cake/Test/Fixture/AppleFixture.php @@ -25,13 +25,6 @@ */ class AppleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Apple' - */ - public $name = 'Apple'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ArmorFixture.php b/lib/Cake/Test/Fixture/ArmorFixture.php index b8b528f69..b3247380e 100644 --- a/lib/Cake/Test/Fixture/ArmorFixture.php +++ b/lib/Cake/Test/Fixture/ArmorFixture.php @@ -25,13 +25,6 @@ */ class ArmorFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Armor' - */ - public $name = 'Armor'; - /** * Datasource * diff --git a/lib/Cake/Test/Fixture/ArmorsPlayerFixture.php b/lib/Cake/Test/Fixture/ArmorsPlayerFixture.php index bc33fd54d..dedfe5e5a 100644 --- a/lib/Cake/Test/Fixture/ArmorsPlayerFixture.php +++ b/lib/Cake/Test/Fixture/ArmorsPlayerFixture.php @@ -25,13 +25,6 @@ */ class ArmorsPlayerFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ArmorsPlayer' - */ - public $name = 'ArmorsPlayer'; - /** * Datasource * diff --git a/lib/Cake/Test/Fixture/AroFixture.php b/lib/Cake/Test/Fixture/AroFixture.php index 4fe1d2e31..ce21036c4 100644 --- a/lib/Cake/Test/Fixture/AroFixture.php +++ b/lib/Cake/Test/Fixture/AroFixture.php @@ -25,13 +25,6 @@ */ class AroFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Aro' - */ - public $name = 'Aro'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AroTwoFixture.php b/lib/Cake/Test/Fixture/AroTwoFixture.php index b8e25a099..576b07bda 100644 --- a/lib/Cake/Test/Fixture/AroTwoFixture.php +++ b/lib/Cake/Test/Fixture/AroTwoFixture.php @@ -25,13 +25,6 @@ */ class AroTwoFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'AroTwo' - */ - public $name = 'AroTwo'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ArosAcoFixture.php b/lib/Cake/Test/Fixture/ArosAcoFixture.php index 4bb7ea76c..309231f19 100644 --- a/lib/Cake/Test/Fixture/ArosAcoFixture.php +++ b/lib/Cake/Test/Fixture/ArosAcoFixture.php @@ -25,13 +25,6 @@ */ class ArosAcoFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ArosAco' - */ - public $name = 'ArosAco'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ArosAcoTwoFixture.php b/lib/Cake/Test/Fixture/ArosAcoTwoFixture.php index f9c7e0046..3dd810254 100644 --- a/lib/Cake/Test/Fixture/ArosAcoTwoFixture.php +++ b/lib/Cake/Test/Fixture/ArosAcoTwoFixture.php @@ -25,13 +25,6 @@ */ class ArosAcoTwoFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ArosAcoTwo' - */ - public $name = 'ArosAcoTwo'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ArticleFeaturedFixture.php b/lib/Cake/Test/Fixture/ArticleFeaturedFixture.php index 83715ad2f..f5a959ea8 100644 --- a/lib/Cake/Test/Fixture/ArticleFeaturedFixture.php +++ b/lib/Cake/Test/Fixture/ArticleFeaturedFixture.php @@ -25,13 +25,6 @@ */ class ArticleFeaturedFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ArticleFeatured' - */ - public $name = 'ArticleFeatured'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ArticleFeaturedsTagsFixture.php b/lib/Cake/Test/Fixture/ArticleFeaturedsTagsFixture.php index a12df1fc7..9a009799a 100644 --- a/lib/Cake/Test/Fixture/ArticleFeaturedsTagsFixture.php +++ b/lib/Cake/Test/Fixture/ArticleFeaturedsTagsFixture.php @@ -25,13 +25,6 @@ */ class ArticleFeaturedsTagsFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ArticleFeaturedsTags' - */ - public $name = 'ArticleFeaturedsTags'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ArticleFixture.php b/lib/Cake/Test/Fixture/ArticleFixture.php index 9e0ed5baa..39e3e5c84 100644 --- a/lib/Cake/Test/Fixture/ArticleFixture.php +++ b/lib/Cake/Test/Fixture/ArticleFixture.php @@ -25,13 +25,6 @@ */ class ArticleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Article' - */ - public $name = 'Article'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ArticlesTagFixture.php b/lib/Cake/Test/Fixture/ArticlesTagFixture.php index 585c46803..751cc69fb 100644 --- a/lib/Cake/Test/Fixture/ArticlesTagFixture.php +++ b/lib/Cake/Test/Fixture/ArticlesTagFixture.php @@ -25,13 +25,6 @@ */ class ArticlesTagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ArticlesTag' - */ - public $name = 'ArticlesTag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AttachmentFixture.php b/lib/Cake/Test/Fixture/AttachmentFixture.php index 6b2089909..c63002c8b 100644 --- a/lib/Cake/Test/Fixture/AttachmentFixture.php +++ b/lib/Cake/Test/Fixture/AttachmentFixture.php @@ -25,13 +25,6 @@ */ class AttachmentFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Attachment' - */ - public $name = 'Attachment'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AuthUserCustomFieldFixture.php b/lib/Cake/Test/Fixture/AuthUserCustomFieldFixture.php index 5e887867b..89c15775d 100644 --- a/lib/Cake/Test/Fixture/AuthUserCustomFieldFixture.php +++ b/lib/Cake/Test/Fixture/AuthUserCustomFieldFixture.php @@ -25,13 +25,6 @@ */ class AuthUserCustomFieldFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'AuthUser' - */ - public $name = 'AuthUserCustomField'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AuthUserFixture.php b/lib/Cake/Test/Fixture/AuthUserFixture.php index 8f41031f4..afa38611b 100644 --- a/lib/Cake/Test/Fixture/AuthUserFixture.php +++ b/lib/Cake/Test/Fixture/AuthUserFixture.php @@ -25,13 +25,6 @@ */ class AuthUserFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'AuthUser' - */ - public $name = 'AuthUser'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/AuthorFixture.php b/lib/Cake/Test/Fixture/AuthorFixture.php index 198bf79e1..a2257298a 100644 --- a/lib/Cake/Test/Fixture/AuthorFixture.php +++ b/lib/Cake/Test/Fixture/AuthorFixture.php @@ -25,13 +25,6 @@ */ class AuthorFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Author' - */ - public $name = 'Author'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BakeArticleFixture.php b/lib/Cake/Test/Fixture/BakeArticleFixture.php index 94b520160..34f59b1c4 100644 --- a/lib/Cake/Test/Fixture/BakeArticleFixture.php +++ b/lib/Cake/Test/Fixture/BakeArticleFixture.php @@ -25,13 +25,6 @@ */ class BakeArticleFixture extends CakeTestFixture { -/** - * name property - * - * @var string - */ - public $name = 'BakeArticle'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BakeArticlesBakeTagFixture.php b/lib/Cake/Test/Fixture/BakeArticlesBakeTagFixture.php index ec4d07597..06a3a43b7 100644 --- a/lib/Cake/Test/Fixture/BakeArticlesBakeTagFixture.php +++ b/lib/Cake/Test/Fixture/BakeArticlesBakeTagFixture.php @@ -25,13 +25,6 @@ */ class BakeArticlesBakeTagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ArticlesTag' - */ - public $name = 'BakeArticlesBakeTag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BakeCommentFixture.php b/lib/Cake/Test/Fixture/BakeCommentFixture.php index 95137159b..37724f340 100644 --- a/lib/Cake/Test/Fixture/BakeCommentFixture.php +++ b/lib/Cake/Test/Fixture/BakeCommentFixture.php @@ -25,13 +25,6 @@ */ class BakeCommentFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Comment' - */ - public $name = 'BakeComment'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BakeTagFixture.php b/lib/Cake/Test/Fixture/BakeTagFixture.php index 10816df24..3fac6b076 100644 --- a/lib/Cake/Test/Fixture/BakeTagFixture.php +++ b/lib/Cake/Test/Fixture/BakeTagFixture.php @@ -25,13 +25,6 @@ */ class BakeTagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Tag' - */ - public $name = 'BakeTag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BasketFixture.php b/lib/Cake/Test/Fixture/BasketFixture.php index 2a4b4dae0..c58556dbf 100644 --- a/lib/Cake/Test/Fixture/BasketFixture.php +++ b/lib/Cake/Test/Fixture/BasketFixture.php @@ -25,13 +25,6 @@ */ class BasketFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Basket' - */ - public $name = 'Basket'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BidFixture.php b/lib/Cake/Test/Fixture/BidFixture.php index 1c11d080c..e4ea57d84 100644 --- a/lib/Cake/Test/Fixture/BidFixture.php +++ b/lib/Cake/Test/Fixture/BidFixture.php @@ -25,13 +25,6 @@ */ class BidFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Bid' - */ - public $name = 'Bid'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BiddingFixture.php b/lib/Cake/Test/Fixture/BiddingFixture.php index 991bd9447..0ff857c4a 100644 --- a/lib/Cake/Test/Fixture/BiddingFixture.php +++ b/lib/Cake/Test/Fixture/BiddingFixture.php @@ -25,13 +25,6 @@ */ class BiddingFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Bidding' - */ - public $name = 'Bidding'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BiddingMessageFixture.php b/lib/Cake/Test/Fixture/BiddingMessageFixture.php index 3c41fc92d..dc82913a3 100644 --- a/lib/Cake/Test/Fixture/BiddingMessageFixture.php +++ b/lib/Cake/Test/Fixture/BiddingMessageFixture.php @@ -25,13 +25,6 @@ */ class BiddingMessageFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'BiddingMessage' - */ - public $name = 'BiddingMessage'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BinaryTestFixture.php b/lib/Cake/Test/Fixture/BinaryTestFixture.php index 9f5dea490..cb43b3084 100644 --- a/lib/Cake/Test/Fixture/BinaryTestFixture.php +++ b/lib/Cake/Test/Fixture/BinaryTestFixture.php @@ -25,13 +25,6 @@ */ class BinaryTestFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'BinaryTest' - */ - public $name = 'BinaryTest'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/BookFixture.php b/lib/Cake/Test/Fixture/BookFixture.php index 96e06b05b..aa15314b0 100644 --- a/lib/Cake/Test/Fixture/BookFixture.php +++ b/lib/Cake/Test/Fixture/BookFixture.php @@ -25,13 +25,6 @@ */ class BookFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Book' - */ - public $name = 'Book'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CacheTestModelFixture.php b/lib/Cake/Test/Fixture/CacheTestModelFixture.php index da81169bd..0e813f2b2 100644 --- a/lib/Cake/Test/Fixture/CacheTestModelFixture.php +++ b/lib/Cake/Test/Fixture/CacheTestModelFixture.php @@ -25,13 +25,6 @@ */ class CacheTestModelFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'CacheTestModel' - */ - public $name = 'CacheTestModel'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CakeSessionFixture.php b/lib/Cake/Test/Fixture/CakeSessionFixture.php index 4bed4dc39..3526341c5 100644 --- a/lib/Cake/Test/Fixture/CakeSessionFixture.php +++ b/lib/Cake/Test/Fixture/CakeSessionFixture.php @@ -21,13 +21,6 @@ */ class CakeSessionFixture extends CakeTestFixture { -/** - * name property - * - * @var string - */ - public $name = 'CakeSession'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CallbackFixture.php b/lib/Cake/Test/Fixture/CallbackFixture.php index 30f5921ba..c752cc36a 100644 --- a/lib/Cake/Test/Fixture/CallbackFixture.php +++ b/lib/Cake/Test/Fixture/CallbackFixture.php @@ -25,13 +25,6 @@ */ class CallbackFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Callback' - */ - public $name = 'Callback'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CampaignFixture.php b/lib/Cake/Test/Fixture/CampaignFixture.php index 8ebeab994..ea658309b 100644 --- a/lib/Cake/Test/Fixture/CampaignFixture.php +++ b/lib/Cake/Test/Fixture/CampaignFixture.php @@ -26,13 +26,6 @@ */ class CampaignFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Campaign' - */ - public $name = 'Campaign'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CategoryFixture.php b/lib/Cake/Test/Fixture/CategoryFixture.php index 10b0d304b..9fc40c4d2 100644 --- a/lib/Cake/Test/Fixture/CategoryFixture.php +++ b/lib/Cake/Test/Fixture/CategoryFixture.php @@ -25,13 +25,6 @@ */ class CategoryFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Category' - */ - public $name = 'Category'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CategoryThreadFixture.php b/lib/Cake/Test/Fixture/CategoryThreadFixture.php index 40ff469d9..2ab37bdee 100644 --- a/lib/Cake/Test/Fixture/CategoryThreadFixture.php +++ b/lib/Cake/Test/Fixture/CategoryThreadFixture.php @@ -25,13 +25,6 @@ */ class CategoryThreadFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'CategoryThread' - */ - public $name = 'CategoryThread'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CdFixture.php b/lib/Cake/Test/Fixture/CdFixture.php index a93420d5a..b76efd4a5 100644 --- a/lib/Cake/Test/Fixture/CdFixture.php +++ b/lib/Cake/Test/Fixture/CdFixture.php @@ -25,13 +25,6 @@ */ class CdFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Cd' - */ - public $name = 'Cd'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/CommentFixture.php b/lib/Cake/Test/Fixture/CommentFixture.php index da84edc41..b2b83c88e 100644 --- a/lib/Cake/Test/Fixture/CommentFixture.php +++ b/lib/Cake/Test/Fixture/CommentFixture.php @@ -25,13 +25,6 @@ */ class CommentFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Comment' - */ - public $name = 'Comment'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ContentAccountFixture.php b/lib/Cake/Test/Fixture/ContentAccountFixture.php index 3f01f6bd0..59f274a08 100644 --- a/lib/Cake/Test/Fixture/ContentAccountFixture.php +++ b/lib/Cake/Test/Fixture/ContentAccountFixture.php @@ -25,13 +25,6 @@ */ class ContentAccountFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Aco' - */ - public $name = 'ContentAccount'; - public $table = 'ContentAccounts'; /** diff --git a/lib/Cake/Test/Fixture/ContentFixture.php b/lib/Cake/Test/Fixture/ContentFixture.php index b31adfebb..af1e03189 100644 --- a/lib/Cake/Test/Fixture/ContentFixture.php +++ b/lib/Cake/Test/Fixture/ContentFixture.php @@ -25,13 +25,6 @@ */ class ContentFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Aco' - */ - public $name = 'Content'; - public $table = 'Content'; /** diff --git a/lib/Cake/Test/Fixture/CounterCachePostFixture.php b/lib/Cake/Test/Fixture/CounterCachePostFixture.php index f2f40dd23..d8838133d 100644 --- a/lib/Cake/Test/Fixture/CounterCachePostFixture.php +++ b/lib/Cake/Test/Fixture/CounterCachePostFixture.php @@ -25,8 +25,6 @@ */ class CounterCachePostFixture extends CakeTestFixture { - public $name = 'CounterCachePost'; - public $fields = array( 'id' => array('type' => 'integer', 'key' => 'primary'), 'title' => array('type' => 'string', 'length' => 255), diff --git a/lib/Cake/Test/Fixture/CounterCachePostNonstandardPrimaryKeyFixture.php b/lib/Cake/Test/Fixture/CounterCachePostNonstandardPrimaryKeyFixture.php index 3c6a09489..399bc226a 100644 --- a/lib/Cake/Test/Fixture/CounterCachePostNonstandardPrimaryKeyFixture.php +++ b/lib/Cake/Test/Fixture/CounterCachePostNonstandardPrimaryKeyFixture.php @@ -25,8 +25,6 @@ */ class CounterCachePostNonstandardPrimaryKeyFixture extends CakeTestFixture { - public $name = 'CounterCachePostNonstandardPrimaryKey'; - public $fields = array( 'pid' => array('type' => 'integer', 'key' => 'primary'), 'title' => array('type' => 'string', 'length' => 255, 'null' => false), diff --git a/lib/Cake/Test/Fixture/CounterCacheUserFixture.php b/lib/Cake/Test/Fixture/CounterCacheUserFixture.php index 38b8d56d2..95eaa6859 100644 --- a/lib/Cake/Test/Fixture/CounterCacheUserFixture.php +++ b/lib/Cake/Test/Fixture/CounterCacheUserFixture.php @@ -25,8 +25,6 @@ */ class CounterCacheUserFixture extends CakeTestFixture { - public $name = 'CounterCacheUser'; - public $fields = array( 'id' => array('type' => 'integer', 'key' => 'primary'), 'name' => array('type' => 'string', 'length' => 255, 'null' => false), diff --git a/lib/Cake/Test/Fixture/CounterCacheUserNonstandardPrimaryKeyFixture.php b/lib/Cake/Test/Fixture/CounterCacheUserNonstandardPrimaryKeyFixture.php index 3a6bfef7d..030f36204 100644 --- a/lib/Cake/Test/Fixture/CounterCacheUserNonstandardPrimaryKeyFixture.php +++ b/lib/Cake/Test/Fixture/CounterCacheUserNonstandardPrimaryKeyFixture.php @@ -25,8 +25,6 @@ */ class CounterCacheUserNonstandardPrimaryKeyFixture extends CakeTestFixture { - public $name = 'CounterCacheUserNonstandardPrimaryKey'; - public $fields = array( 'uid' => array('type' => 'integer', 'key' => 'primary'), 'name' => array('type' => 'string', 'length' => 255, 'null' => false), diff --git a/lib/Cake/Test/Fixture/DataTestFixture.php b/lib/Cake/Test/Fixture/DataTestFixture.php index 719494f76..ba95e3f1c 100644 --- a/lib/Cake/Test/Fixture/DataTestFixture.php +++ b/lib/Cake/Test/Fixture/DataTestFixture.php @@ -25,13 +25,6 @@ */ class DataTestFixture extends CakeTestFixture { -/** - * Name property - * - * @var string 'DataTest' - */ - public $name = 'DataTest'; - /** * Fields property * diff --git a/lib/Cake/Test/Fixture/DatatypeFixture.php b/lib/Cake/Test/Fixture/DatatypeFixture.php index d47a04504..413ca74e3 100644 --- a/lib/Cake/Test/Fixture/DatatypeFixture.php +++ b/lib/Cake/Test/Fixture/DatatypeFixture.php @@ -25,13 +25,6 @@ */ class DatatypeFixture extends CakeTestFixture { -/** - * Name property - * - * @var string 'Datatype' - */ - public $name = 'Datatype'; - /** * Fields property * diff --git a/lib/Cake/Test/Fixture/DependencyFixture.php b/lib/Cake/Test/Fixture/DependencyFixture.php index 8aa7c0482..2f0418797 100644 --- a/lib/Cake/Test/Fixture/DependencyFixture.php +++ b/lib/Cake/Test/Fixture/DependencyFixture.php @@ -26,13 +26,6 @@ */ class DependencyFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Dependency' - */ - public $name = 'Dependency'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/DeviceFixture.php b/lib/Cake/Test/Fixture/DeviceFixture.php index bd1efc994..b4dc268d1 100644 --- a/lib/Cake/Test/Fixture/DeviceFixture.php +++ b/lib/Cake/Test/Fixture/DeviceFixture.php @@ -25,13 +25,6 @@ */ class DeviceFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Device' - */ - public $name = 'Device'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/DeviceTypeCategoryFixture.php b/lib/Cake/Test/Fixture/DeviceTypeCategoryFixture.php index f0aa9c3e1..32cda4517 100644 --- a/lib/Cake/Test/Fixture/DeviceTypeCategoryFixture.php +++ b/lib/Cake/Test/Fixture/DeviceTypeCategoryFixture.php @@ -25,13 +25,6 @@ */ class DeviceTypeCategoryFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'DeviceTypeCategory' - */ - public $name = 'DeviceTypeCategory'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/DeviceTypeFixture.php b/lib/Cake/Test/Fixture/DeviceTypeFixture.php index cda239178..a06c40b86 100644 --- a/lib/Cake/Test/Fixture/DeviceTypeFixture.php +++ b/lib/Cake/Test/Fixture/DeviceTypeFixture.php @@ -25,13 +25,6 @@ */ class DeviceTypeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'DeviceType' - */ - public $name = 'DeviceType'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/DocumentDirectoryFixture.php b/lib/Cake/Test/Fixture/DocumentDirectoryFixture.php index d29edaf76..fa2f734f6 100644 --- a/lib/Cake/Test/Fixture/DocumentDirectoryFixture.php +++ b/lib/Cake/Test/Fixture/DocumentDirectoryFixture.php @@ -25,13 +25,6 @@ */ class DocumentDirectoryFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'DocumentDirectory' - */ - public $name = 'DocumentDirectory'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/DocumentFixture.php b/lib/Cake/Test/Fixture/DocumentFixture.php index 8d2137a2e..dd992decc 100644 --- a/lib/Cake/Test/Fixture/DocumentFixture.php +++ b/lib/Cake/Test/Fixture/DocumentFixture.php @@ -25,13 +25,6 @@ */ class DocumentFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Document' - */ - public $name = 'Document'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/DomainFixture.php b/lib/Cake/Test/Fixture/DomainFixture.php index f9c9afd95..409a4585f 100644 --- a/lib/Cake/Test/Fixture/DomainFixture.php +++ b/lib/Cake/Test/Fixture/DomainFixture.php @@ -24,19 +24,10 @@ */ class DomainFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Domain' - * @access public - */ - public $name = 'Domain'; - /** * fields property * * @var array - * @access public */ public $fields = array( 'id' => array('type' => 'integer', 'key' => 'primary'), @@ -49,7 +40,6 @@ class DomainFixture extends CakeTestFixture { * records property * * @var array - * @access public */ public $records = array( array('domain' => 'cakephp.org', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'), diff --git a/lib/Cake/Test/Fixture/DomainsSiteFixture.php b/lib/Cake/Test/Fixture/DomainsSiteFixture.php index a8ec89465..bd4ae1466 100644 --- a/lib/Cake/Test/Fixture/DomainsSiteFixture.php +++ b/lib/Cake/Test/Fixture/DomainsSiteFixture.php @@ -24,19 +24,10 @@ */ class DomainsSiteFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Domain' - * @access public - */ - public $name = 'DomainsSite'; - /** * fields property * * @var array - * @access public */ public $fields = array( 'id' => array('type' => 'integer', 'key' => 'primary'), @@ -51,7 +42,6 @@ class DomainsSiteFixture extends CakeTestFixture { * records property * * @var array - * @access public */ public $records = array( array('site_id' => 1, 'domain_id' => 1, 'active' => true, 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'), diff --git a/lib/Cake/Test/Fixture/ExteriorTypeCategoryFixture.php b/lib/Cake/Test/Fixture/ExteriorTypeCategoryFixture.php index 07789e03d..9359783ef 100644 --- a/lib/Cake/Test/Fixture/ExteriorTypeCategoryFixture.php +++ b/lib/Cake/Test/Fixture/ExteriorTypeCategoryFixture.php @@ -25,13 +25,6 @@ */ class ExteriorTypeCategoryFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ExteriorTypeCategory' - */ - public $name = 'ExteriorTypeCategory'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/FeatureSetFixture.php b/lib/Cake/Test/Fixture/FeatureSetFixture.php index 566a5bb2c..ff420aa89 100644 --- a/lib/Cake/Test/Fixture/FeatureSetFixture.php +++ b/lib/Cake/Test/Fixture/FeatureSetFixture.php @@ -25,13 +25,6 @@ */ class FeatureSetFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'FeatureSet' - */ - public $name = 'FeatureSet'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/FeaturedFixture.php b/lib/Cake/Test/Fixture/FeaturedFixture.php index dea152ccb..cd2e43cba 100644 --- a/lib/Cake/Test/Fixture/FeaturedFixture.php +++ b/lib/Cake/Test/Fixture/FeaturedFixture.php @@ -25,13 +25,6 @@ */ class FeaturedFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Featured' - */ - public $name = 'Featured'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/FilmFileFixture.php b/lib/Cake/Test/Fixture/FilmFileFixture.php index cf2d5fa6b..efa369057 100644 --- a/lib/Cake/Test/Fixture/FilmFileFixture.php +++ b/lib/Cake/Test/Fixture/FilmFileFixture.php @@ -25,13 +25,6 @@ */ class FilmFileFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'FilmFile' - */ - public $name = 'FilmFile'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/FlagTreeFixture.php b/lib/Cake/Test/Fixture/FlagTreeFixture.php index b776129a4..8d3268e30 100644 --- a/lib/Cake/Test/Fixture/FlagTreeFixture.php +++ b/lib/Cake/Test/Fixture/FlagTreeFixture.php @@ -29,13 +29,6 @@ */ class FlagTreeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'FlagTree' - */ - public $name = 'FlagTree'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/FruitFixture.php b/lib/Cake/Test/Fixture/FruitFixture.php index 37ff47725..9b4eae2c7 100644 --- a/lib/Cake/Test/Fixture/FruitFixture.php +++ b/lib/Cake/Test/Fixture/FruitFixture.php @@ -25,13 +25,6 @@ */ class FruitFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Fruit' - */ - public $name = 'Fruit'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/FruitsUuidTagFixture.php b/lib/Cake/Test/Fixture/FruitsUuidTagFixture.php index 194c0642c..9a3a1b93d 100644 --- a/lib/Cake/Test/Fixture/FruitsUuidTagFixture.php +++ b/lib/Cake/Test/Fixture/FruitsUuidTagFixture.php @@ -25,13 +25,6 @@ */ class FruitsUuidTagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'FruitsUuidTag' - */ - public $name = 'FruitsUuidTag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/GroupUpdateAllFixture.php b/lib/Cake/Test/Fixture/GroupUpdateAllFixture.php index 0523a5db3..91d00d9d6 100644 --- a/lib/Cake/Test/Fixture/GroupUpdateAllFixture.php +++ b/lib/Cake/Test/Fixture/GroupUpdateAllFixture.php @@ -25,8 +25,6 @@ */ class GroupUpdateAllFixture extends CakeTestFixture { - public $name = 'GroupUpdateAll'; - public $table = 'group_update_all'; public $fields = array( diff --git a/lib/Cake/Test/Fixture/GuildFixture.php b/lib/Cake/Test/Fixture/GuildFixture.php index 1c9b7c096..2d89d2df4 100644 --- a/lib/Cake/Test/Fixture/GuildFixture.php +++ b/lib/Cake/Test/Fixture/GuildFixture.php @@ -25,13 +25,6 @@ */ class GuildFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Guild' - */ - public $name = 'Guild'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/GuildsPlayerFixture.php b/lib/Cake/Test/Fixture/GuildsPlayerFixture.php index 58c8259f0..54ce6c7c7 100644 --- a/lib/Cake/Test/Fixture/GuildsPlayerFixture.php +++ b/lib/Cake/Test/Fixture/GuildsPlayerFixture.php @@ -25,13 +25,6 @@ */ class GuildsPlayerFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'GuildsPlayer' - */ - public $name = 'GuildsPlayer'; - public $useDbConfig = 'test2'; /** diff --git a/lib/Cake/Test/Fixture/HomeFixture.php b/lib/Cake/Test/Fixture/HomeFixture.php index abbd27d7e..febd685f1 100644 --- a/lib/Cake/Test/Fixture/HomeFixture.php +++ b/lib/Cake/Test/Fixture/HomeFixture.php @@ -25,13 +25,6 @@ */ class HomeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Home' - */ - public $name = 'Home'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ImageFixture.php b/lib/Cake/Test/Fixture/ImageFixture.php index df18d1196..922bca2cd 100644 --- a/lib/Cake/Test/Fixture/ImageFixture.php +++ b/lib/Cake/Test/Fixture/ImageFixture.php @@ -25,13 +25,6 @@ */ class ImageFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Image' - */ - public $name = 'Image'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/InnoFixture.php b/lib/Cake/Test/Fixture/InnoFixture.php index 41626adc5..1165e5053 100644 --- a/lib/Cake/Test/Fixture/InnoFixture.php +++ b/lib/Cake/Test/Fixture/InnoFixture.php @@ -25,13 +25,6 @@ */ class InnoFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Article' - */ - public $name = 'Inno'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ItemFixture.php b/lib/Cake/Test/Fixture/ItemFixture.php index b660c87de..6f7fcf78c 100644 --- a/lib/Cake/Test/Fixture/ItemFixture.php +++ b/lib/Cake/Test/Fixture/ItemFixture.php @@ -25,13 +25,6 @@ */ class ItemFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Item' - */ - public $name = 'Item'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ItemsPortfolioFixture.php b/lib/Cake/Test/Fixture/ItemsPortfolioFixture.php index 79a73203e..29ba126e8 100644 --- a/lib/Cake/Test/Fixture/ItemsPortfolioFixture.php +++ b/lib/Cake/Test/Fixture/ItemsPortfolioFixture.php @@ -25,13 +25,6 @@ */ class ItemsPortfolioFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ItemsPortfolio' - */ - public $name = 'ItemsPortfolio'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/JoinAFixture.php b/lib/Cake/Test/Fixture/JoinAFixture.php index d7996770b..b494c1508 100644 --- a/lib/Cake/Test/Fixture/JoinAFixture.php +++ b/lib/Cake/Test/Fixture/JoinAFixture.php @@ -25,13 +25,6 @@ */ class JoinAFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'JoinA' - */ - public $name = 'JoinA'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/JoinBFixture.php b/lib/Cake/Test/Fixture/JoinBFixture.php index bb229ffd9..b75030b53 100644 --- a/lib/Cake/Test/Fixture/JoinBFixture.php +++ b/lib/Cake/Test/Fixture/JoinBFixture.php @@ -25,13 +25,6 @@ */ class JoinBFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'JoinB' - */ - public $name = 'JoinB'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/JoinCFixture.php b/lib/Cake/Test/Fixture/JoinCFixture.php index cc6f0a7ee..67f4690b5 100644 --- a/lib/Cake/Test/Fixture/JoinCFixture.php +++ b/lib/Cake/Test/Fixture/JoinCFixture.php @@ -25,13 +25,6 @@ */ class JoinCFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'JoinC' - */ - public $name = 'JoinC'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/JoinThingFixture.php b/lib/Cake/Test/Fixture/JoinThingFixture.php index bb1acfaf8..6732f815e 100644 --- a/lib/Cake/Test/Fixture/JoinThingFixture.php +++ b/lib/Cake/Test/Fixture/JoinThingFixture.php @@ -25,13 +25,6 @@ */ class JoinThingFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'JoinThing' - */ - public $name = 'JoinThing'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/MessageFixture.php b/lib/Cake/Test/Fixture/MessageFixture.php index 199cc8083..ecfccd1be 100644 --- a/lib/Cake/Test/Fixture/MessageFixture.php +++ b/lib/Cake/Test/Fixture/MessageFixture.php @@ -25,13 +25,6 @@ */ class MessageFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Message' - */ - public $name = 'Message'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/MyCategoriesMyProductsFixture.php b/lib/Cake/Test/Fixture/MyCategoriesMyProductsFixture.php index 213ff1da8..86febfbd2 100644 --- a/lib/Cake/Test/Fixture/MyCategoriesMyProductsFixture.php +++ b/lib/Cake/Test/Fixture/MyCategoriesMyProductsFixture.php @@ -25,13 +25,6 @@ */ class MyCategoriesMyProductsFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'MyCategoriesMyProducts' - */ - public $name = 'MyCategoriesMyProducts'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/MyCategoriesMyUsersFixture.php b/lib/Cake/Test/Fixture/MyCategoriesMyUsersFixture.php index 665d045d8..393e0628b 100644 --- a/lib/Cake/Test/Fixture/MyCategoriesMyUsersFixture.php +++ b/lib/Cake/Test/Fixture/MyCategoriesMyUsersFixture.php @@ -25,13 +25,6 @@ */ class MyCategoriesMyUsersFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'MyCategoriesMyUsers' - */ - public $name = 'MyCategoriesMyUsers'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/MyCategoryFixture.php b/lib/Cake/Test/Fixture/MyCategoryFixture.php index 7246ff675..32b8d13a5 100644 --- a/lib/Cake/Test/Fixture/MyCategoryFixture.php +++ b/lib/Cake/Test/Fixture/MyCategoryFixture.php @@ -25,13 +25,6 @@ */ class MyCategoryFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'MyCategory' - */ - public $name = 'MyCategory'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/MyProductFixture.php b/lib/Cake/Test/Fixture/MyProductFixture.php index 9f2f82ebb..b729adb3d 100644 --- a/lib/Cake/Test/Fixture/MyProductFixture.php +++ b/lib/Cake/Test/Fixture/MyProductFixture.php @@ -25,13 +25,6 @@ */ class MyProductFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'MyProduct' - */ - public $name = 'MyProduct'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/MyUserFixture.php b/lib/Cake/Test/Fixture/MyUserFixture.php index 34dce316e..3c974a05a 100644 --- a/lib/Cake/Test/Fixture/MyUserFixture.php +++ b/lib/Cake/Test/Fixture/MyUserFixture.php @@ -25,13 +25,6 @@ */ class MyUserFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'MyUser' - */ - public $name = 'MyUser'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/NodeFixture.php b/lib/Cake/Test/Fixture/NodeFixture.php index 02b86b656..7ed358a9a 100644 --- a/lib/Cake/Test/Fixture/NodeFixture.php +++ b/lib/Cake/Test/Fixture/NodeFixture.php @@ -26,13 +26,6 @@ */ class NodeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Node' - */ - public $name = 'Node'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/NumberTreeFixture.php b/lib/Cake/Test/Fixture/NumberTreeFixture.php index e4d87ca41..6c3b37c82 100644 --- a/lib/Cake/Test/Fixture/NumberTreeFixture.php +++ b/lib/Cake/Test/Fixture/NumberTreeFixture.php @@ -29,13 +29,6 @@ */ class NumberTreeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'NumberTree' - */ - public $name = 'NumberTree'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/NumberTreeTwoFixture.php b/lib/Cake/Test/Fixture/NumberTreeTwoFixture.php index aa7d608e4..8a14ab158 100644 --- a/lib/Cake/Test/Fixture/NumberTreeTwoFixture.php +++ b/lib/Cake/Test/Fixture/NumberTreeTwoFixture.php @@ -29,13 +29,6 @@ */ class NumberTreeTwoFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'NumberTree' - */ - public $name = 'NumberTreeTwo'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/NumericArticleFixture.php b/lib/Cake/Test/Fixture/NumericArticleFixture.php index 313c28365..1e272fc0b 100644 --- a/lib/Cake/Test/Fixture/NumericArticleFixture.php +++ b/lib/Cake/Test/Fixture/NumericArticleFixture.php @@ -25,13 +25,6 @@ */ class NumericArticleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'NumericArticle' - */ - public $name = 'NumericArticle'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/OverallFavoriteFixture.php b/lib/Cake/Test/Fixture/OverallFavoriteFixture.php index 9875e3592..36de88bec 100644 --- a/lib/Cake/Test/Fixture/OverallFavoriteFixture.php +++ b/lib/Cake/Test/Fixture/OverallFavoriteFixture.php @@ -25,13 +25,6 @@ */ class OverallFavoriteFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'OverallFavorite' - */ - public $name = 'OverallFavorite'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/PersonFixture.php b/lib/Cake/Test/Fixture/PersonFixture.php index 683140dc4..42281a514 100644 --- a/lib/Cake/Test/Fixture/PersonFixture.php +++ b/lib/Cake/Test/Fixture/PersonFixture.php @@ -25,13 +25,6 @@ */ class PersonFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Person' - */ - public $name = 'Person'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/PlayerFixture.php b/lib/Cake/Test/Fixture/PlayerFixture.php index f29855451..8abea3924 100644 --- a/lib/Cake/Test/Fixture/PlayerFixture.php +++ b/lib/Cake/Test/Fixture/PlayerFixture.php @@ -25,13 +25,6 @@ */ class PlayerFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Player' - */ - public $name = 'Player'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/PortfolioFixture.php b/lib/Cake/Test/Fixture/PortfolioFixture.php index 8dabefc62..507b08dfa 100644 --- a/lib/Cake/Test/Fixture/PortfolioFixture.php +++ b/lib/Cake/Test/Fixture/PortfolioFixture.php @@ -25,13 +25,6 @@ */ class PortfolioFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Portfolio' - */ - public $name = 'Portfolio'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/PostFixture.php b/lib/Cake/Test/Fixture/PostFixture.php index 95338c497..c141c232c 100644 --- a/lib/Cake/Test/Fixture/PostFixture.php +++ b/lib/Cake/Test/Fixture/PostFixture.php @@ -25,13 +25,6 @@ */ class PostFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Post' - */ - public $name = 'Post'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/PostsTagFixture.php b/lib/Cake/Test/Fixture/PostsTagFixture.php index a5f3abb14..ef2660f62 100644 --- a/lib/Cake/Test/Fixture/PostsTagFixture.php +++ b/lib/Cake/Test/Fixture/PostsTagFixture.php @@ -25,13 +25,6 @@ */ class PostsTagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'PostsTag' - */ - public $name = 'PostsTag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/PrefixTestFixture.php b/lib/Cake/Test/Fixture/PrefixTestFixture.php index 425b6224f..47f36ebd7 100644 --- a/lib/Cake/Test/Fixture/PrefixTestFixture.php +++ b/lib/Cake/Test/Fixture/PrefixTestFixture.php @@ -24,8 +24,6 @@ */ class PrefixTestFixture extends CakeTestFixture { - public $name = 'PrefixTest'; - public $table = 'prefix_prefix_tests'; public $fields = array( diff --git a/lib/Cake/Test/Fixture/PrimaryModelFixture.php b/lib/Cake/Test/Fixture/PrimaryModelFixture.php index b4c5207e1..a16e6c8e5 100644 --- a/lib/Cake/Test/Fixture/PrimaryModelFixture.php +++ b/lib/Cake/Test/Fixture/PrimaryModelFixture.php @@ -25,13 +25,6 @@ */ class PrimaryModelFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'PrimaryModel' - */ - public $name = 'PrimaryModel'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ProductFixture.php b/lib/Cake/Test/Fixture/ProductFixture.php index de4a8112a..3cf6b3263 100644 --- a/lib/Cake/Test/Fixture/ProductFixture.php +++ b/lib/Cake/Test/Fixture/ProductFixture.php @@ -25,13 +25,6 @@ */ class ProductFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Product' - */ - public $name = 'Product'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ProductUpdateAllFixture.php b/lib/Cake/Test/Fixture/ProductUpdateAllFixture.php index cadbad809..3b115456d 100644 --- a/lib/Cake/Test/Fixture/ProductUpdateAllFixture.php +++ b/lib/Cake/Test/Fixture/ProductUpdateAllFixture.php @@ -25,8 +25,6 @@ */ class ProductUpdateAllFixture extends CakeTestFixture { - public $name = 'ProductUpdateAll'; - public $table = 'product_update_all'; public $fields = array( diff --git a/lib/Cake/Test/Fixture/ProjectFixture.php b/lib/Cake/Test/Fixture/ProjectFixture.php index a19efa875..e29b48ea0 100644 --- a/lib/Cake/Test/Fixture/ProjectFixture.php +++ b/lib/Cake/Test/Fixture/ProjectFixture.php @@ -25,13 +25,6 @@ */ class ProjectFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Project' - */ - public $name = 'Project'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/SampleFixture.php b/lib/Cake/Test/Fixture/SampleFixture.php index fa6df4ef5..1d06bc485 100644 --- a/lib/Cake/Test/Fixture/SampleFixture.php +++ b/lib/Cake/Test/Fixture/SampleFixture.php @@ -25,13 +25,6 @@ */ class SampleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Sample' - */ - public $name = 'Sample'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/SecondaryModelFixture.php b/lib/Cake/Test/Fixture/SecondaryModelFixture.php index 65cfa815a..b88596f6a 100644 --- a/lib/Cake/Test/Fixture/SecondaryModelFixture.php +++ b/lib/Cake/Test/Fixture/SecondaryModelFixture.php @@ -25,13 +25,6 @@ */ class SecondaryModelFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'SecondaryModel' - */ - public $name = 'SecondaryModel'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/SessionFixture.php b/lib/Cake/Test/Fixture/SessionFixture.php index c7f8bce00..42ad92348 100644 --- a/lib/Cake/Test/Fixture/SessionFixture.php +++ b/lib/Cake/Test/Fixture/SessionFixture.php @@ -25,13 +25,6 @@ */ class SessionFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Session' - */ - public $name = 'Session'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/SiteFixture.php b/lib/Cake/Test/Fixture/SiteFixture.php index f55b77f5a..158429de4 100644 --- a/lib/Cake/Test/Fixture/SiteFixture.php +++ b/lib/Cake/Test/Fixture/SiteFixture.php @@ -24,19 +24,10 @@ */ class SiteFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Site' - * @access public - */ - public $name = 'Site'; - /** * fields property * * @var array - * @access public */ public $fields = array( 'id' => array('type' => 'integer', 'key' => 'primary'), @@ -49,7 +40,6 @@ class SiteFixture extends CakeTestFixture { * records property * * @var array - * @access public */ public $records = array( array('name' => 'cakephp', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'), diff --git a/lib/Cake/Test/Fixture/SomethingElseFixture.php b/lib/Cake/Test/Fixture/SomethingElseFixture.php index b47c5b26e..1f4eb534a 100644 --- a/lib/Cake/Test/Fixture/SomethingElseFixture.php +++ b/lib/Cake/Test/Fixture/SomethingElseFixture.php @@ -25,13 +25,6 @@ */ class SomethingElseFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'SomethingElse' - */ - public $name = 'SomethingElse'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/SomethingFixture.php b/lib/Cake/Test/Fixture/SomethingFixture.php index e8265b804..b5e20351a 100644 --- a/lib/Cake/Test/Fixture/SomethingFixture.php +++ b/lib/Cake/Test/Fixture/SomethingFixture.php @@ -25,13 +25,6 @@ */ class SomethingFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Something' - */ - public $name = 'Something'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/StoriesTagFixture.php b/lib/Cake/Test/Fixture/StoriesTagFixture.php index fc5e5edbc..66a9705dd 100644 --- a/lib/Cake/Test/Fixture/StoriesTagFixture.php +++ b/lib/Cake/Test/Fixture/StoriesTagFixture.php @@ -25,13 +25,6 @@ */ class StoriesTagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'StoriesTag' - */ - public $name = 'StoriesTag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/StoryFixture.php b/lib/Cake/Test/Fixture/StoryFixture.php index c3d953ae5..b94574277 100644 --- a/lib/Cake/Test/Fixture/StoryFixture.php +++ b/lib/Cake/Test/Fixture/StoryFixture.php @@ -25,13 +25,6 @@ */ class StoryFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Story' - */ - public $name = 'Story'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/SyfileFixture.php b/lib/Cake/Test/Fixture/SyfileFixture.php index ecf362dfd..cb6bd5031 100644 --- a/lib/Cake/Test/Fixture/SyfileFixture.php +++ b/lib/Cake/Test/Fixture/SyfileFixture.php @@ -25,13 +25,6 @@ */ class SyfileFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Syfile' - */ - public $name = 'Syfile'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/TagFixture.php b/lib/Cake/Test/Fixture/TagFixture.php index d36792728..0f12c4009 100644 --- a/lib/Cake/Test/Fixture/TagFixture.php +++ b/lib/Cake/Test/Fixture/TagFixture.php @@ -25,13 +25,6 @@ */ class TagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Tag' - */ - public $name = 'Tag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/TestPluginArticleFixture.php b/lib/Cake/Test/Fixture/TestPluginArticleFixture.php index 4faa56120..d9a4d684f 100644 --- a/lib/Cake/Test/Fixture/TestPluginArticleFixture.php +++ b/lib/Cake/Test/Fixture/TestPluginArticleFixture.php @@ -25,13 +25,6 @@ */ class TestPluginArticleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Article' - */ - public $name = 'TestPluginArticle'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/TestPluginCommentFixture.php b/lib/Cake/Test/Fixture/TestPluginCommentFixture.php index 449aaf321..03c879717 100644 --- a/lib/Cake/Test/Fixture/TestPluginCommentFixture.php +++ b/lib/Cake/Test/Fixture/TestPluginCommentFixture.php @@ -25,13 +25,6 @@ */ class TestPluginCommentFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Comment' - */ - public $name = 'TestPluginComment'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ThePaperMonkiesFixture.php b/lib/Cake/Test/Fixture/ThePaperMonkiesFixture.php index 5b43e6d7c..0ed796922 100644 --- a/lib/Cake/Test/Fixture/ThePaperMonkiesFixture.php +++ b/lib/Cake/Test/Fixture/ThePaperMonkiesFixture.php @@ -25,13 +25,6 @@ */ class ThePaperMonkiesFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'ThePaperMonkies' - */ - public $name = 'ThePaperMonkies'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/ThreadFixture.php b/lib/Cake/Test/Fixture/ThreadFixture.php index 991baff56..014997c9c 100644 --- a/lib/Cake/Test/Fixture/ThreadFixture.php +++ b/lib/Cake/Test/Fixture/ThreadFixture.php @@ -25,13 +25,6 @@ */ class ThreadFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Thread' - */ - public $name = 'Thread'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/TranslateArticleFixture.php b/lib/Cake/Test/Fixture/TranslateArticleFixture.php index 7582fb726..38196b976 100644 --- a/lib/Cake/Test/Fixture/TranslateArticleFixture.php +++ b/lib/Cake/Test/Fixture/TranslateArticleFixture.php @@ -25,13 +25,6 @@ */ class TranslateArticleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Translate' - */ - public $name = 'TranslateArticle'; - /** * table property * diff --git a/lib/Cake/Test/Fixture/TranslateFixture.php b/lib/Cake/Test/Fixture/TranslateFixture.php index 14a4a8dbb..5242abbed 100644 --- a/lib/Cake/Test/Fixture/TranslateFixture.php +++ b/lib/Cake/Test/Fixture/TranslateFixture.php @@ -25,13 +25,6 @@ */ class TranslateFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Translate' - */ - public $name = 'Translate'; - /** * table property * diff --git a/lib/Cake/Test/Fixture/TranslateTableFixture.php b/lib/Cake/Test/Fixture/TranslateTableFixture.php index c9961d479..0a6543b69 100644 --- a/lib/Cake/Test/Fixture/TranslateTableFixture.php +++ b/lib/Cake/Test/Fixture/TranslateTableFixture.php @@ -25,13 +25,6 @@ */ class TranslateTableFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'TranslateTable' - */ - public $name = 'TranslateTable'; - /** * table property * diff --git a/lib/Cake/Test/Fixture/TranslateWithPrefixFixture.php b/lib/Cake/Test/Fixture/TranslateWithPrefixFixture.php index b73b2a624..2dbe8c7ea 100644 --- a/lib/Cake/Test/Fixture/TranslateWithPrefixFixture.php +++ b/lib/Cake/Test/Fixture/TranslateWithPrefixFixture.php @@ -29,13 +29,6 @@ */ class TranslateWithPrefixFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Translate' - */ - public $name = 'TranslateWithPrefix'; - /** * table property * diff --git a/lib/Cake/Test/Fixture/TranslatedArticleFixture.php b/lib/Cake/Test/Fixture/TranslatedArticleFixture.php index 43ec483af..8600bb5d1 100644 --- a/lib/Cake/Test/Fixture/TranslatedArticleFixture.php +++ b/lib/Cake/Test/Fixture/TranslatedArticleFixture.php @@ -25,13 +25,6 @@ */ class TranslatedArticleFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'TranslatedItem' - */ - public $name = 'TranslatedArticle'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/TranslatedItemFixture.php b/lib/Cake/Test/Fixture/TranslatedItemFixture.php index aba61ec5e..2ee509da6 100644 --- a/lib/Cake/Test/Fixture/TranslatedItemFixture.php +++ b/lib/Cake/Test/Fixture/TranslatedItemFixture.php @@ -25,13 +25,6 @@ */ class TranslatedItemFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'TranslatedItem' - */ - public $name = 'TranslatedItem'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UnconventionalTreeFixture.php b/lib/Cake/Test/Fixture/UnconventionalTreeFixture.php index 984e1f8fa..f260ba6e5 100644 --- a/lib/Cake/Test/Fixture/UnconventionalTreeFixture.php +++ b/lib/Cake/Test/Fixture/UnconventionalTreeFixture.php @@ -28,13 +28,6 @@ */ class UnconventionalTreeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'FlagTree' - */ - public $name = 'UnconventionalTree'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UnderscoreFieldFixture.php b/lib/Cake/Test/Fixture/UnderscoreFieldFixture.php index a3091611f..3c02f6086 100644 --- a/lib/Cake/Test/Fixture/UnderscoreFieldFixture.php +++ b/lib/Cake/Test/Fixture/UnderscoreFieldFixture.php @@ -25,13 +25,6 @@ */ class UnderscoreFieldFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'UnderscoreField' - */ - public $name = 'UnderscoreField'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UserFixture.php b/lib/Cake/Test/Fixture/UserFixture.php index 676e2fcb2..6430b677d 100644 --- a/lib/Cake/Test/Fixture/UserFixture.php +++ b/lib/Cake/Test/Fixture/UserFixture.php @@ -25,13 +25,6 @@ */ class UserFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'User' - */ - public $name = 'User'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UuidFixture.php b/lib/Cake/Test/Fixture/UuidFixture.php index 034ddbf77..3a90e9065 100644 --- a/lib/Cake/Test/Fixture/UuidFixture.php +++ b/lib/Cake/Test/Fixture/UuidFixture.php @@ -25,13 +25,6 @@ */ class UuidFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Uuid' - */ - public $name = 'Uuid'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UuidTagFixture.php b/lib/Cake/Test/Fixture/UuidTagFixture.php index c2ecfa474..234fab38a 100644 --- a/lib/Cake/Test/Fixture/UuidTagFixture.php +++ b/lib/Cake/Test/Fixture/UuidTagFixture.php @@ -25,13 +25,6 @@ */ class UuidTagFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'UuidTag' - */ - public $name = 'UuidTag'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UuidTreeFixture.php b/lib/Cake/Test/Fixture/UuidTreeFixture.php index a3fc8f855..f1b5cb150 100644 --- a/lib/Cake/Test/Fixture/UuidTreeFixture.php +++ b/lib/Cake/Test/Fixture/UuidTreeFixture.php @@ -26,13 +26,6 @@ */ class UuidTreeFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'UuidTree' - */ - public $name = 'UuidTree'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UuiditemFixture.php b/lib/Cake/Test/Fixture/UuiditemFixture.php index c8fa9a4a2..27d982376 100644 --- a/lib/Cake/Test/Fixture/UuiditemFixture.php +++ b/lib/Cake/Test/Fixture/UuiditemFixture.php @@ -25,13 +25,6 @@ */ class UuiditemFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Uuiditem' - */ - public $name = 'Uuiditem'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UuiditemsUuidportfolioFixture.php b/lib/Cake/Test/Fixture/UuiditemsUuidportfolioFixture.php index fdc9add57..8c5a187e1 100644 --- a/lib/Cake/Test/Fixture/UuiditemsUuidportfolioFixture.php +++ b/lib/Cake/Test/Fixture/UuiditemsUuidportfolioFixture.php @@ -25,13 +25,6 @@ */ class UuiditemsUuidportfolioFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'UuiditemsUuidportfolio' - */ - public $name = 'UuiditemsUuidportfolio'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UuiditemsUuidportfolioNumericidFixture.php b/lib/Cake/Test/Fixture/UuiditemsUuidportfolioNumericidFixture.php index fd1318283..a8878934b 100644 --- a/lib/Cake/Test/Fixture/UuiditemsUuidportfolioNumericidFixture.php +++ b/lib/Cake/Test/Fixture/UuiditemsUuidportfolioNumericidFixture.php @@ -25,13 +25,6 @@ */ class UuiditemsUuidportfolioNumericidFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'UuiditemsUuidportfolioNumericid' - */ - public $name = 'UuiditemsUuidportfolioNumericid'; - /** * fields property * diff --git a/lib/Cake/Test/Fixture/UuidportfolioFixture.php b/lib/Cake/Test/Fixture/UuidportfolioFixture.php index 04c62f8b9..f998b21a0 100644 --- a/lib/Cake/Test/Fixture/UuidportfolioFixture.php +++ b/lib/Cake/Test/Fixture/UuidportfolioFixture.php @@ -25,13 +25,6 @@ */ class UuidportfolioFixture extends CakeTestFixture { -/** - * name property - * - * @var string 'Uuidportfolio' - */ - public $name = 'Uuidportfolio'; - /** * fields property *