Update imports

This commit is contained in:
Oliver Davies 2019-01-16 00:03:44 +00:00
parent 06d35d0515
commit b85a82e6d6
3 changed files with 4 additions and 4 deletions

View file

@ -2,15 +2,14 @@
namespace App\Command;
use App\Model\Tweet;
use App\Entity\Tweet;
use App\Repository\TweetRepository;
use App\Service\Retweeter;
use App\Service\TweetFetcher;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
class RetweetTweetsCommand extends Command
{

View file

@ -5,6 +5,7 @@ namespace App\Repository;
use App\Entity\Tweet;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Symfony\Bridge\Doctrine\RegistryInterface;
use Tightenco\Collect\Support\Collection;
/**
* @method Tweet|null find($id, $lockMode = null, $lockVersion = null)

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Model\Tweet;
use App\Entity\Tweet;
class Retweeter
{