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