From double quote to simple quote

This commit is contained in:
Antonin 2015-04-07 17:36:29 +02:00
parent 1058d3653b
commit bd00cf1915
5 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ class AddColumn_hidden_In_poll_For_0_9 implements Migration {
* @return string The description of the migration class * @return string The description of the migration class
*/ */
function description() { function description() {
return "Add column \"hidden\" in table \"vote\" for version 0.9"; return 'Add column "hidden" in table "vote" for version 0.9';
} }
/** /**

View File

@ -37,7 +37,7 @@ class AddColumn_receiveNewComments_For_0_9 implements Migration {
* @return string The description of the migration class * @return string The description of the migration class
*/ */
function description() { function description() {
return "Add column \"receiveNewComments\" for version 0.9"; return 'Add column "receiveNewComments" for version 0.9';
} }
/** /**

View File

@ -37,7 +37,7 @@ class AddColumn_uniqId_In_vote_For_0_9 implements Migration {
* @return string The description of the migration class * @return string The description of the migration class
*/ */
function description() { function description() {
return "Add column \"uniqId\" in table \"vote\" for version 0.9"; return 'Add column "uniqId" in table "vote" for version 0.9';
} }
/** /**

View File

@ -37,7 +37,7 @@ class From_0_0_to_0_8_Migration implements Migration {
* @return string The description of the migration class * @return string The description of the migration class
*/ */
function description() { function description() {
return "First installation of the Framadate application (v0.8)"; return 'First installation of the Framadate application (v0.8)';
} }
/** /**

View File

@ -37,7 +37,7 @@ class From_0_8_to_0_9_Migration implements Migration {
* @return string The description of the migration class * @return string The description of the migration class
*/ */
function description() { function description() {
return "From 0.8 to 0.9"; return 'From 0.8 to 0.9';
} }
/** /**