Skip to content

Commit

Permalink
add newline character to files ends
Browse files Browse the repository at this point in the history
  • Loading branch information
moriony committed Sep 29, 2014
1 parent c6ceba4 commit f023340
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ before_install:
- composer install --dev

after_script:
- php vendor/bin/coveralls
- php vendor/bin/coveralls

2 changes: 1 addition & 1 deletion examples/event.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
->setAction('play')
->setLabel('holiday')
->setValue(300)
->track();
->track();
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ public function createException()
{
return new Exception($this->client);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ public function track()
$command = $this->getHitType();
return $this->client->$command($this->getData());
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ public function getValue()
{
return $this->getData(self::FIELD_EVENT_VALUE);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ public function getExceptionIsFatal()
{
return $this->getData(self::FIELD_EXCEPTION_IS_FATAL);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ interface HitInterface

public function __construct(MeasurementProtocolClient $client);
public function track();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ public function getCurrency()
{
return $this->getData(self::FIELD_CURRENCY);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ public function getTitle()
{
return $this->getData(self::FIELD_DOCUMENT_TITLE);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ public function getContentDescription()
{
return $this->getData(self::FIELD_CONTENT_DESCRIPTION);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ public function getTarget()
{
return $this->getData(self::FIELD_SOCIAL_TARGET);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ public function getServerResponseTime()
{
return $this->getData(self::FIELD_SERVER_RESPONSE_TIME);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ public function getCurrency()
{
return $this->getData(self::FIELD_CURRENCY);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public function register($client)
}
});
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ interface PluginInterface
{
/** @param MeasurementProtocolClient $client */
public function register($client);
}
}

0 comments on commit f023340

Please sign in to comment.