From ea60444ff4e8a2885d420147f60ab3ebee558931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 21 May 2016 21:03:27 +0200 Subject: [PATCH] Fix: Remove unused imports --- tests/Authentication/OAuth2ClientTest.php | 1 - tests/PseudoRandomString/PseudoRandomStringFactoryTest.php | 3 --- tests/bootstrap.php | 2 -- 3 files changed, 6 deletions(-) diff --git a/tests/Authentication/OAuth2ClientTest.php b/tests/Authentication/OAuth2ClientTest.php index 4ad8548bf..c2c460e5c 100644 --- a/tests/Authentication/OAuth2ClientTest.php +++ b/tests/Authentication/OAuth2ClientTest.php @@ -23,7 +23,6 @@ */ namespace Facebook\Tests\Authentication; -use Mockery as m; use Facebook\Facebook; use Facebook\FacebookApp; use Facebook\Authentication\OAuth2Client; diff --git a/tests/PseudoRandomString/PseudoRandomStringFactoryTest.php b/tests/PseudoRandomString/PseudoRandomStringFactoryTest.php index 381fe3608..996e6fcaf 100644 --- a/tests/PseudoRandomString/PseudoRandomStringFactoryTest.php +++ b/tests/PseudoRandomString/PseudoRandomStringFactoryTest.php @@ -23,10 +23,7 @@ */ namespace Facebook\Tests\PseudoRandomString; -use Facebook\PseudoRandomString\McryptPseudoRandomStringGenerator; -use Facebook\PseudoRandomString\OpenSslPseudoRandomStringGenerator; use Facebook\PseudoRandomString\PseudoRandomStringGeneratorFactory; -use Facebook\PseudoRandomString\UrandomPseudoRandomStringGenerator; use PHPUnit_Framework_TestCase; class PseudoRandomStringFactoryTest extends PHPUnit_Framework_TestCase diff --git a/tests/bootstrap.php b/tests/bootstrap.php index aaa79539b..b2744a194 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -25,8 +25,6 @@ require_once __DIR__ . '/../vendor/autoload.php'; -use Facebook\FacebookClient; - // Delete the temp test user after all tests have fired register_shutdown_function(function () { //echo "\nTotal requests made to Graph: " . FacebookClient::$requestCount . "\n\n";