作者:saberyouni
项目:Sonata-Projec
/**
* @param string $name
* @param EngineInterface $templating
* @param ActionManagerInterface $actionManager
* @param TimelineManagerInterface $timelineManager
* @param SecurityContextInterface $securityContext
*/
public function __construct($name, EngineInterface $templating, ActionManagerInterface $actionManager, TimelineManagerInterface $timelineManager, SecurityContextInterface $securityContext)
{
$this->actionManager = $actionManager;
$this->timelineManager = $timelineManager;
$this->securityContext = $securityContext;
parent::__construct($name, $templating);
}
作者:xxspartan1
项目:BMS-Marke
public function __construct($name, $templating, $template = null)
{
if ($template) {
$this->template = $template;
}
parent::__construct($name, $templating);
}
作者:sonata-projec
项目:ecommerc
/**
* @param string $name
* @param EngineInterface $templating
* @param RegistryInterface $registry
* @param CurrencyDetectorInterface $currencyDetector
* @param ProductFinderInterface $productFinder
* @param string $productClass
*/
public function __construct($name, EngineInterface $templating, RegistryInterface $registry, CurrencyDetectorInterface $currencyDetector, ProductFinderInterface $productFinder, $productClass)
{
$this->productRepository = $registry->getManager()->getRepository($productClass);
$this->currencyDetector = $currencyDetector;
$this->productFinder = $productFinder;
parent::__construct($name, $templating);
}
作者:lzd
项目:ecommerc
/**
* @param string $name
* @param EngineInterface $templating
* @param OrderManagerInterface $orderManager
* @param CustomerManagerInterface $customerManager
* @param SecurityContextInterface $securityContext
*/
public function __construct($name, EngineInterface $templating, OrderManagerInterface $orderManager, CustomerManagerInterface $customerManager, SecurityContextInterface $securityContext)
{
$this->orderManager = $orderManager;
$this->customerManager = $customerManager;
$this->securityContext = $securityContext;
parent::__construct($name, $templating);
}
作者:kinkinwe
项目:lhv
public function __construct($name, EngineInterface $templating, EntityManager $em, ManagerInterface $mediaManager, ContainerInterface $container)
{
$this->em = $em;
$this->container = $container;
$this->mediaManager = $mediaManager;
parent::__construct($name, $templating);
}
作者:sgh198691
项目:symfony-ts
public function __construct($name, EngineInterface $templating, EntityManager $entityManager, Session $session, $sessionKey)
{
parent::__construct($name, $templating);
$this->entityManager = $entityManager;
$this->session = $session;
$this->sessionKey = $sessionKey;
}
作者:WildCodeSchoo
项目:projet-intranet_hopita
public function __construct($name, EngineInterface $templating, Pool $pool, EntityManager $em, SecurityContext $securityContext)
{
parent::__construct($name, $templating);
$this->pool = $pool;
$this->em = $em;
$this->securityContext = $securityContext;
}
作者:WildCodeSchoo
项目:projet-gest
/**
* StatElevesBlockService constructor.
* @param string $name
* @param EngineInterface $templating
* @param Pool $pool
* @param EntityManager $em
* @param DateNow $dateNow
*/
public function __construct($name, EngineInterface $templating, Pool $pool, EntityManager $em, DateNow $dateNow)
{
parent::__construct($name, $templating);
$this->pool = $pool;
$this->em = $em;
$this->date_now_service = $dateNow;
}
作者:nvbooste
项目:StarterBundl
/**
* @param string $name
* @param EngineInterface $templating
* @param string $template
*/
public function __construct($name, EngineInterface $templating, $template = null)
{
parent::__construct($name, $templating);
if ($template) {
$this->template = $template;
}
}
作者:saberyouni
项目:Sonata-Projec
/**
* @param string $name
* @param EngineInterface $templating
* @param RegistryInterface $registry
* @param CurrencyDetectorInterface $currencyDetector
* @param ProductFinderInterface $productFinder
*/
public function __construct($name, EngineInterface $templating, RegistryInterface $registry, CurrencyDetectorInterface $currencyDetector, ProductFinderInterface $productFinder)
{
$this->productRepository = $registry->getManager()->getRepository('Application\\Sonata\\ProductBundle\\Entity\\Product');
$this->currencyDetector = $currencyDetector;
$this->productFinder = $productFinder;
parent::__construct($name, $templating);
}
作者:nvbooste
项目:BlockBundl
/**
* @param string $name
* @param EngineInterface $templating
* @param BlockRendererInterface $blockRenderer
* @param string|null $template To overwrite the default template.
*/
public function __construct($name, EngineInterface $templating, BlockRendererInterface $blockRenderer, $template = null)
{
parent::__construct($name, $templating);
$this->blockRenderer = $blockRenderer;
if ($template) {
$this->template = $template;
}
}
作者:martin198
项目:live-broadcast-bundl
/**
* YouTubeBlockService constructor.
* @param string $name
* @param EngineInterface $templating
* @param YouTubeApiService $youTubeApi
* @param RequestStack $requestStack
* @param GoogleRedirectService $redirectService
* @throws \Martin1982\LiveBroadcastBundle\Exception\LiveBroadcastOutputException
*/
public function __construct($name, EngineInterface $templating, YouTubeApiService $youTubeApi, RequestStack $requestStack, GoogleRedirectService $redirectService)
{
$this->youTubeApi = $youTubeApi;
$this->requestStack = $requestStack;
$redirectUri = $redirectService->getOAuthRedirectUrl();
$this->youTubeApi->initApiClients($redirectUri);
parent::__construct($name, $templating);
}
作者:sgh198691
项目:symfony-ts
public function __construct($name, EngineInterface $templating, EntityManager $entityManager, Session $session, $formFactory, $securityContext)
{
parent::__construct($name, $templating);
$this->entityManager = $entityManager;
$this->session = $session;
$this->formFactory = $formFactory;
$this->securityContext = $securityContext;
}
作者:bruer
项目:platfor
/**
* @param string $name
* @param EngineInterface $templating
* @param ContainerInterface $container
*/
public function __construct($name, EngineInterface $templating, ManagerInterface $manager, ManagerInterface $collectionManager, $translator, $context)
{
parent::__construct($name, $templating);
$this->collectionManager = $collectionManager;
$this->translator = $translator;
$this->manager = $manager;
$this->context = $context;
}
作者:Neodor
项目:SonataNewsBundl
/**
* @param string $name
* @param EngineInterface $templating
* @param ManagerInterface $postManager
* @param Pool $adminPool
*/
public function __construct($name, EngineInterface $templating, ManagerInterface $postManager, Pool $adminPool = null)
{
if (!$postManager instanceof PostManagerInterface) {
@trigger_error('Calling the ' . __METHOD__ . ' method with a Sonata\\CoreBundle\\Model\\ManagerInterface is deprecated since version 2.4 and will be removed in 3.0. Use the new signature with a Sonata\\NewsBundle\\Model\\PostManagerInterface instead.', E_USER_DEPRECATED);
}
$this->manager = $postManager;
$this->adminPool = $adminPool;
parent::__construct($name, $templating);
}
作者:sgh198691
项目:symfony-ts
public function __construct($name, EngineInterface $templating, EntityManager $entityManager, Session $session, $schoolSessionKey, $orgSessionKey, $securityContext)
{
parent::__construct($name, $templating);
$this->entityManager = $entityManager;
$this->session = $session;
$this->orgSessionKey = $orgSessionKey;
$this->schoolSessionKey = $schoolSessionKey;
$this->securityContext = $securityContext;
}
作者:symfony-cm
项目:symfony-cmf-websit
public function __construct($name, $templating, $template, DocumentManager $dm, PublishWorkflowChecker $publishWorkflowChecker)
{
if ($template) {
$this->template = $template;
}
parent::__construct($name, $templating);
$this->dm = $dm;
$this->publishWorkflowChecker = $publishWorkflowChecker;
}
作者:phptut
项目:personalsitesonataadmi
/**
*
* @DI\InjectParams({
* "templating" = @DI\Inject("templating"),
* "formFactory" = @DI\Inject("form.factory"),
* "requestStack" = @DI\Inject("request_stack"),
* "cloudinaryManager" = @DI\Inject("app.component.cloudinarymanager"),
* "siteSettingManager" = @DI\Inject("app.component.sitesettingmanager")
* })
*/
public function __construct( EngineInterface $templating, FormFactory $formFactory, RequestStack $requestStack,
CloudinaryManager $cloudinaryManager, SiteSettingManager $siteSettingManager)
{
parent::__construct('site_settings', $templating);
$this->formFactory = $formFactory;
$this->request = $requestStack->getCurrentRequest();
$this->cloudinaryManager = $cloudinaryManager;
$this->siteSettingManager = $siteSettingManager;
}
作者:kinkinwe
项目:lhv
/**
* @param string $name
* @param EngineInterface $templating
* @param ManagerInterface $manager
* @param Pool $adminPool
*/
public function __construct($name, EngineInterface $templating, ManagerInterface $manager, Pool $adminPool = null)
{
$this->manager = $manager;
$this->adminPool = $adminPool;
parent::__construct($name, $templating);
}
作者:josephzha
项目:map2uleafle
public function __construct($name, $templating, EntityManager $entityManager)
{
parent::__construct($name, $templating);
$this->em = $entityManager;
}