PartKeepr\SetupBundle\Services\FootprintSetupService::__construct PHP Method

__construct() public method

public __construct ( EntityManager $entityManager, CategoryService $categoryService, UploadedFileService $uploadedFileService, Symfony\Component\HttpKernel\KernelInterface $kernel )
$entityManager Doctrine\ORM\EntityManager
$categoryService PartKeepr\CategoryBundle\Services\CategoryService
$uploadedFileService PartKeepr\UploadedFileBundle\Services\UploadedFileService
$kernel Symfony\Component\HttpKernel\KernelInterface
    public function __construct(EntityManager $entityManager, CategoryService $categoryService, UploadedFileService $uploadedFileService, KernelInterface $kernel)
    {
        $this->entityManager = $entityManager;
        $this->footprintCategoryService = $categoryService;
        $this->uploadedFileService = $uploadedFileService;
        $this->kernel = $kernel;
    }