src/Core/Application/Query/Insales/GetCountClientReadyToExport/GetCountClientReadyToExportQuery.php line 14

  1. <?php
  2.     
  3.     namespace App\Core\Application\Query\Insales\GetCountClientReadyToExport;
  4.     
  5.     use App\Core\Domain\Model;
  6.     use PhpParser\Node\Expr\AssignOp\Mod;
  7.     /**
  8.      * Получение количества готовых к выгрузке клиентов insales
  9.      *
  10.      * Class GetCountClientReadyToExportQuery
  11.      * @package App\Core\Application\Query\Insales\GetCountClientReadyToExport
  12.      */
  13.     final class GetCountClientReadyToExportQuery
  14.     {
  15.     
  16.         /**
  17.          * @var Model\Insales\Application
  18.          */
  19.         private Model\Insales\Application $application;
  20.     
  21.         /**
  22.          * @param Model\Insales\Application $application
  23.          */
  24.         public function __construct(Model\Insales\Application $application)
  25.         {
  26.             $this->application $application;
  27.         }
  28.     
  29.         /**
  30.          * @return Model\Insales\Application
  31.          */
  32.         public function getApplication(): Model\Insales\Application
  33.         {
  34.             return $this->application;
  35.         }
  36.     }