Update imports
This commit is contained in:
parent
06d35d0515
commit
b85a82e6d6
|
@ -2,15 +2,14 @@
|
||||||
|
|
||||||
namespace App\Command;
|
namespace App\Command;
|
||||||
|
|
||||||
use App\Model\Tweet;
|
use App\Entity\Tweet;
|
||||||
|
use App\Repository\TweetRepository;
|
||||||
use App\Service\Retweeter;
|
use App\Service\Retweeter;
|
||||||
use App\Service\TweetFetcher;
|
use App\Service\TweetFetcher;
|
||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputArgument;
|
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Input\InputOption;
|
use Symfony\Component\Console\Input\InputOption;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
||||||
|
|
||||||
class RetweetTweetsCommand extends Command
|
class RetweetTweetsCommand extends Command
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,6 +5,7 @@ namespace App\Repository;
|
||||||
use App\Entity\Tweet;
|
use App\Entity\Tweet;
|
||||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||||
use Symfony\Bridge\Doctrine\RegistryInterface;
|
use Symfony\Bridge\Doctrine\RegistryInterface;
|
||||||
|
use Tightenco\Collect\Support\Collection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @method Tweet|null find($id, $lockMode = null, $lockVersion = null)
|
* @method Tweet|null find($id, $lockMode = null, $lockVersion = null)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace App\Service;
|
namespace App\Service;
|
||||||
|
|
||||||
use App\Model\Tweet;
|
use App\Entity\Tweet;
|
||||||
|
|
||||||
class Retweeter
|
class Retweeter
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue