PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
blog
/
src
/
Services
/
Abstracts
<?php namespace Botble\Blog\Services\Abstracts; use Botble\Blog\Models\Post; use Botble\Blog\Repositories\Interfaces\CategoryInterface; use Illuminate\Http\Request; abstract class StoreCategoryServiceAbstract { /** * @var CategoryInterface */ protected $categoryRepository; /** * StoreCategoryServiceAbstract constructor. * @param CategoryInterface $categoryRepository */ public function __construct(CategoryInterface $categoryRepository) { $this->categoryRepository = $categoryRepository; } /** * @param Request $request * @param Post $post * @return mixed */ abstract public function execute(Request $request, Post $post); }
[-] StoreTagServiceAbstract.php
[edit]
[-] StoreCategoryServiceAbstract.php
[edit]
[+]
..