[Pkg-owncloud-commits] [php-sabre-vobject] 107/341: Remove the `public` declarations.
David Prévot
taffit at moszumanska.debian.org
Tue Aug 11 13:35:39 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 160ed2a24908b4b693504dd29bec2cae281b434e
Author: Ivan Enderlin <ivan.enderlin at hoa-project.net>
Date: Tue Jan 13 15:53:52 2015 +0100
Remove the `public` declarations.
---
tests/VObject/ReaderTest.php | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/tests/VObject/ReaderTest.php b/tests/VObject/ReaderTest.php
index f530d81..287fa8d 100644
--- a/tests/VObject/ReaderTest.php
+++ b/tests/VObject/ReaderTest.php
@@ -213,6 +213,7 @@ class ReaderTest extends \PHPUnit_Framework_TestCase {
}
function testReadPropertyRepeatingNamelessGuessedParameter() {
+
$data = "BEGIN:VCALENDAR\r\nPROPNAME;WORK;VOICE;PREF:propValue\r\nEND:VCALENDAR";
$result = Reader::read($data);
@@ -393,7 +394,7 @@ class ReaderTest extends \PHPUnit_Framework_TestCase {
*
* @expectedException \Sabre\VObject\ParseException
*/
- public function testReadIncompleteFile() {
+ function testReadIncompleteFile() {
$input = <<<ICS
BEGIN:VCALENDAR
@@ -429,13 +430,13 @@ ICS;
/**
* @expectedException \InvalidArgumentException
*/
- public function testReadBrokenInput() {
+ function testReadBrokenInput() {
Reader::read(false);
}
- public function testReadBOM() {
+ function testReadBOM() {
$data = chr(0xef) . chr(0xbb) . chr(0xbf) . "BEGIN:VCALENDAR\r\nEND:VCALENDAR";
$result = Reader::read($data);
--
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