[Pkg-owncloud-commits] [php-sabre-vobject] 153/341: Fix CS.

David Prévot taffit at moszumanska.debian.org
Tue Aug 11 13:35:43 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository php-sabre-vobject.

commit e7a7708256969c8eb8d653b9ce9cc388321eb2db
Author: Ivan Enderlin <ivan.enderlin at hoa-project.net>
Date:   Mon Jan 19 11:12:16 2015 +0100

    Fix CS.
---
 lib/Property/Float.php               | 2 +-
 lib/Property/ICalendar/Period.php    | 2 +-
 lib/Property/ICalendar/Recur.php     | 2 +-
 lib/Property/Integer.php             | 2 +-
 lib/Property/Text.php                | 2 +-
 lib/Property/Time.php                | 2 +-
 lib/Property/Unknown.php             | 2 +-
 lib/Property/Uri.php                 | 2 +-
 lib/Property/UtcOffset.php           | 2 +-
 lib/Property/VCard/Date.php          | 2 +-
 lib/Property/VCard/DateAndOrTime.php | 3 +--
 lib/Property/VCard/DateTime.php      | 2 +-
 lib/Property/VCard/LanguageTag.php   | 2 +-
 lib/Property/VCard/TimeStamp.php     | 2 +-
 14 files changed, 14 insertions(+), 15 deletions(-)

diff --git a/lib/Property/Float.php b/lib/Property/Float.php
index bc7979a..d08254a 100644
--- a/lib/Property/Float.php
+++ b/lib/Property/Float.php
@@ -68,7 +68,7 @@ class Float extends Property {
      */
     public function getValueType() {
 
-        return "FLOAT";
+        return 'FLOAT';
 
     }
 
diff --git a/lib/Property/ICalendar/Period.php b/lib/Property/ICalendar/Period.php
index 1b4ef0f..e6e0904 100644
--- a/lib/Property/ICalendar/Period.php
+++ b/lib/Property/ICalendar/Period.php
@@ -63,7 +63,7 @@ class Period extends Property {
      */
     function getValueType() {
 
-        return "PERIOD";
+        return 'PERIOD';
 
     }
 
diff --git a/lib/Property/ICalendar/Recur.php b/lib/Property/ICalendar/Recur.php
index f1e33ce..4504f07 100644
--- a/lib/Property/ICalendar/Recur.php
+++ b/lib/Property/ICalendar/Recur.php
@@ -147,7 +147,7 @@ class Recur extends Property {
      */
     function getValueType() {
 
-        return "RECUR";
+        return 'RECUR';
 
     }
 
diff --git a/lib/Property/Integer.php b/lib/Property/Integer.php
index bfea288..9b44941 100644
--- a/lib/Property/Integer.php
+++ b/lib/Property/Integer.php
@@ -53,7 +53,7 @@ class Integer extends Property {
      */
     public function getValueType() {
 
-        return "INTEGER";
+        return 'INTEGER';
 
     }
 
diff --git a/lib/Property/Text.php b/lib/Property/Text.php
index 5e143a6..18e60fd 100644
--- a/lib/Property/Text.php
+++ b/lib/Property/Text.php
@@ -190,7 +190,7 @@ class Text extends Property {
      */
     public function getValueType() {
 
-        return "TEXT";
+        return 'TEXT';
 
     }
 
diff --git a/lib/Property/Time.php b/lib/Property/Time.php
index b1f8344..14d6e58 100644
--- a/lib/Property/Time.php
+++ b/lib/Property/Time.php
@@ -33,7 +33,7 @@ class Time extends Text {
      */
     function getValueType() {
 
-        return "TIME";
+        return 'TIME';
 
     }
 
diff --git a/lib/Property/Unknown.php b/lib/Property/Unknown.php
index bc6eaf5..91d27eb 100644
--- a/lib/Property/Unknown.php
+++ b/lib/Property/Unknown.php
@@ -37,7 +37,7 @@ class Unknown extends Text {
      */
     function getValueType() {
 
-        return "UNKNOWN";
+        return 'UNKNOWN';
 
     }
 
diff --git a/lib/Property/Uri.php b/lib/Property/Uri.php
index e1a5833..d71b27e 100644
--- a/lib/Property/Uri.php
+++ b/lib/Property/Uri.php
@@ -33,7 +33,7 @@ class Uri extends Text {
      */
     public function getValueType() {
 
-        return "URI";
+        return 'URI';
 
     }
 
diff --git a/lib/Property/UtcOffset.php b/lib/Property/UtcOffset.php
index a2be6a0..c336130 100644
--- a/lib/Property/UtcOffset.php
+++ b/lib/Property/UtcOffset.php
@@ -31,7 +31,7 @@ class UtcOffset extends Text {
      */
     public function getValueType() {
 
-        return "UTC-OFFSET";
+        return 'UTC-OFFSET';
 
     }
 
diff --git a/lib/Property/VCard/Date.php b/lib/Property/VCard/Date.php
index 1b63db2..5c016c2 100644
--- a/lib/Property/VCard/Date.php
+++ b/lib/Property/VCard/Date.php
@@ -23,7 +23,7 @@ class Date extends DateAndOrTime {
      */
     function getValueType() {
 
-        return "DATE";
+        return 'DATE';
 
     }
 
diff --git a/lib/Property/VCard/DateAndOrTime.php b/lib/Property/VCard/DateAndOrTime.php
index e2c7fbd..d78b6a2 100644
--- a/lib/Property/VCard/DateAndOrTime.php
+++ b/lib/Property/VCard/DateAndOrTime.php
@@ -36,7 +36,7 @@ class DateAndOrTime extends Property {
      */
     function getValueType() {
 
-        return "DATE-AND-OR-TIME";
+        return 'DATE-AND-OR-TIME';
 
     }
 
@@ -176,7 +176,6 @@ class DateAndOrTime extends Property {
         }
 
         // Month
-
         if (!is_null($parts['month'])) {
             $dateStr.=$parts['month'];
 
diff --git a/lib/Property/VCard/DateTime.php b/lib/Property/VCard/DateTime.php
index 71de72c..76addf8 100644
--- a/lib/Property/VCard/DateTime.php
+++ b/lib/Property/VCard/DateTime.php
@@ -23,7 +23,7 @@ class DateTime extends DateAndOrTime {
      */
     function getValueType() {
 
-        return "DATE-TIME";
+        return 'DATE-TIME';
 
     }
 
diff --git a/lib/Property/VCard/LanguageTag.php b/lib/Property/VCard/LanguageTag.php
index fc6b4a5..44e9be5 100644
--- a/lib/Property/VCard/LanguageTag.php
+++ b/lib/Property/VCard/LanguageTag.php
@@ -52,7 +52,7 @@ class LanguageTag extends Property {
      */
     public function getValueType() {
 
-        return "LANGUAGE-TAG";
+        return 'LANGUAGE-TAG';
 
     }
 
diff --git a/lib/Property/VCard/TimeStamp.php b/lib/Property/VCard/TimeStamp.php
index ab63d3b..9939dcb 100644
--- a/lib/Property/VCard/TimeStamp.php
+++ b/lib/Property/VCard/TimeStamp.php
@@ -35,7 +35,7 @@ class TimeStamp extends Text {
      */
     function getValueType() {
 
-        return "TIMESTAMP";
+        return 'TIMESTAMP';
 
     }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabre-vobject.git



More information about the Pkg-owncloud-commits mailing list