Fixed or removed some package/subpackage definitions to reflect directory structure

Lowercase cake instead of Cake
Tests instead of Test
Fixtures instead of Fixture
This commit is contained in:
Marc Würth 2013-05-29 15:00:18 +02:00
parent 5c38b7e66c
commit 29cc6b3652
8 changed files with 9 additions and 29 deletions

View file

@ -13,7 +13,7 @@
# #
# @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) # @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
# @link http://cakephp.org CakePHP(tm) Project # @link http://cakephp.org CakePHP(tm) Project
# @package cake.Console # @package Cake.Console
# @since CakePHP(tm) v 1.2.0.5012 # @since CakePHP(tm) v 1.2.0.5012
# @license MIT License (http://www.opensource.org/licenses/mit-license.php) # @license MIT License (http://www.opensource.org/licenses/mit-license.php)
# #

View file

@ -11,7 +11,7 @@
:: ::
:: @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) :: @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
:: @link http://cakephp.org CakePHP(tm) Project :: @link http://cakephp.org CakePHP(tm) Project
:: @package cake.console :: @package Cake.Console
:: @since CakePHP(tm) v 1.2.0.5012 :: @since CakePHP(tm) v 1.2.0.5012
:: @license MIT License (http://www.opensource.org/licenses/mit-license.php) :: @license MIT License (http://www.opensource.org/licenses/mit-license.php)
:: ::

View file

@ -30,7 +30,6 @@ App::uses('Router', 'Routing');
/** /**
* ContactTestController class * ContactTestController class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class ContactTestController extends Controller { class ContactTestController extends Controller {
@ -46,7 +45,6 @@ class ContactTestController extends Controller {
/** /**
* Contact class * Contact class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class Contact extends CakeTestModel { class Contact extends CakeTestModel {
@ -138,7 +136,6 @@ class Contact extends CakeTestModel {
/** /**
* ContactTagsContact class * ContactTagsContact class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class ContactTagsContact extends CakeTestModel { class ContactTagsContact extends CakeTestModel {
@ -176,7 +173,6 @@ class ContactTagsContact extends CakeTestModel {
/** /**
* ContactNonStandardPk class * ContactNonStandardPk class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class ContactNonStandardPk extends Contact { class ContactNonStandardPk extends Contact {
@ -205,7 +201,6 @@ class ContactNonStandardPk extends Contact {
/** /**
* ContactTag class * ContactTag class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class ContactTag extends Model { class ContactTag extends Model {
@ -233,7 +228,6 @@ class ContactTag extends Model {
/** /**
* UserForm class * UserForm class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class UserForm extends CakeTestModel { class UserForm extends CakeTestModel {
@ -274,7 +268,6 @@ class UserForm extends CakeTestModel {
/** /**
* OpenidUrl class * OpenidUrl class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class OpenidUrl extends CakeTestModel { class OpenidUrl extends CakeTestModel {
@ -330,7 +323,6 @@ class OpenidUrl extends CakeTestModel {
/** /**
* ValidateUser class * ValidateUser class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class ValidateUser extends CakeTestModel { class ValidateUser extends CakeTestModel {
@ -380,7 +372,6 @@ class ValidateUser extends CakeTestModel {
/** /**
* ValidateProfile class * ValidateProfile class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class ValidateProfile extends CakeTestModel { class ValidateProfile extends CakeTestModel {
@ -440,7 +431,6 @@ class ValidateProfile extends CakeTestModel {
/** /**
* ValidateItem class * ValidateItem class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class ValidateItem extends CakeTestModel { class ValidateItem extends CakeTestModel {
@ -490,7 +480,6 @@ class ValidateItem extends CakeTestModel {
/** /**
* TestMail class * TestMail class
* *
* @package cake
* @package Cake.Test.Case.View.Helper * @package Cake.Test.Case.View.Helper
*/ */
class TestMail extends CakeTestModel { class TestMail extends CakeTestModel {
@ -507,7 +496,6 @@ class TestMail extends CakeTestModel {
/** /**
* FormHelperTest class * FormHelperTest class
* *
* @package cake
* @subpackage Cake.Test.Case.View.Helper * @subpackage Cake.Test.Case.View.Helper
* @property FormHelper $Form * @property FormHelper $Form
*/ */

View file

@ -12,8 +12,7 @@
* *
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @package cake * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
* @since CakePHP(tm) v 2.1 * @since CakePHP(tm) v 2.1
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/ */
@ -21,8 +20,7 @@
/** /**
* Short description for class. * Short description for class.
* *
* @package cake * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
*/ */
class DomainFixture extends CakeTestFixture { class DomainFixture extends CakeTestFixture {

View file

@ -12,8 +12,7 @@
* *
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @package cake * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
* @since CakePHP(tm) v 2.1 * @since CakePHP(tm) v 2.1
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/ */
@ -21,8 +20,7 @@
/** /**
* Short description for class. * Short description for class.
* *
* @package cake * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
*/ */
class DomainsSiteFixture extends CakeTestFixture { class DomainsSiteFixture extends CakeTestFixture {

View file

@ -13,7 +13,6 @@
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @package Cake.Test.Fixture * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
* @since CakePHP(tm) v 1.2.0.4667 * @since CakePHP(tm) v 1.2.0.4667
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/ */
@ -22,7 +21,6 @@
* Short description for class. * Short description for class.
* *
* @package Cake.Test.Fixture * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
*/ */
class PrefixTestFixture extends CakeTestFixture { class PrefixTestFixture extends CakeTestFixture {

View file

@ -12,8 +12,7 @@
* *
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @package cake * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
* @since CakePHP(tm) v 2.1 * @since CakePHP(tm) v 2.1
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/ */
@ -21,8 +20,7 @@
/** /**
* Short description for class. * Short description for class.
* *
* @package cake * @package Cake.Test.Fixture
* @subpackage cake.tests.fixtures
*/ */
class SiteFixture extends CakeTestFixture { class SiteFixture extends CakeTestFixture {

View file

@ -12,7 +12,7 @@
// //
// @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) // @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
// @link http://cakephp.org // @link http://cakephp.org
// @package cake.libs // @package Cake
// @since CakePHP(tm) v 0.2.9 // @since CakePHP(tm) v 0.2.9
// @license MIT License (http://www.opensource.org/licenses/mit-license.php) // @license MIT License (http://www.opensource.org/licenses/mit-license.php)
// +--------------------------------------------------------------------------------------------+ // // +--------------------------------------------------------------------------------------------+ //