Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
hummingbird-performance
/
core
/
api
/
service
/
//home/puskom/mastur/hummingbird-performance/core/api/service/class-service.php
<?php /** * Abstract service class. * * @package Hummingbird. */ namespace Hummingbird\Core\Api\Service; use Hummingbird\Core\Api\Request\Request; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class Service * * @package Hummingbird\Core\Api\Service */ abstract class Service { /** * Service name. * * @var string $name */ protected $name = ''; /** * Request. * * @var null|Request */ protected $request = null; /** * Get the Service Name * * @return string */ public function get_name() { return $this->name; } }