Skip to content
This repository has been archived by the owner on Dec 6, 2019. It is now read-only.

Commit

Permalink
[PSR-2] Applied the rest of fixers of PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w committed Jul 13, 2012
1 parent 00e9f01 commit 64b55ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/ZendGData/CalendarOnlineTest.php
Expand Up @@ -66,7 +66,7 @@ public function testCalendarOnlineFeed()
$this->assertTrue(count($eventFeed) == $eventCount);
}

function getEvent($eventId)
public function getEvent($eventId)
{
$query = $this->gdata->newEventQuery();
$query->setUser('default');
Expand Down Expand Up @@ -120,7 +120,7 @@ public function createEvent(
return $createdEntry;
}

function updateEvent ($eventId, $newTitle)
public function updateEvent ($eventId, $newTitle)
{
$eventOld = $this->getEvent($eventId);
$eventOld->title = $this->gdata->newTitle($newTitle);
Expand Down
6 changes: 3 additions & 3 deletions tests/ZendGData/GDataOnlineTest.php
Expand Up @@ -226,12 +226,12 @@ public function testMediaUpload()
$albumEntry->delete();
}

function testIsAuthenticated()
public function testIsAuthenticated()
{
$this->assertTrue($this->gdata->isAuthenticated());
}

function testRetrieveNextAndPreviousFeedsFromService()
public function testRetrieveNextAndPreviousFeedsFromService()
{
$user = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_EMAIL');
$pass = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_PASSWORD');
Expand Down Expand Up @@ -262,7 +262,7 @@ function testRetrieveNextAndPreviousFeedsFromService()

}

function testRetrieveNextFeedAndPreviousFeedsFromFeed()
public function testRetrieveNextFeedAndPreviousFeedsFromFeed()
{
$user = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_EMAIL');
$pass = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_PASSWORD');
Expand Down

0 comments on commit 64b55ca

Please sign in to comment.