Skip to content
This repository was archived by the owner on Dec 4, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion EpiOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ public function __toString()
}
}

class EpiOAuthException extends Exception
class EpiOAuthException extends \Exception
{
public static function raise($response, $debug)
{
Expand Down
4 changes: 2 additions & 2 deletions EpiTwitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private function request_basic($method, $endpoint, $params = null, $username = n
}
}

class EpiTwitterJson implements ArrayAccess, Countable, IteratorAggregate
class EpiTwitterJson implements \ArrayAccess, \Countable, \IteratorAggregate
{
private $debug;
private $__resp;
Expand Down Expand Up @@ -242,7 +242,7 @@ public function __isset($name)
}
}

class EpiTwitterException extends Exception
class EpiTwitterException extends \Exception
{
public static function raise($response, $debug)
{
Expand Down