File "ReflectionService.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/persistence/src/Persistence/Mapping/ReflectionService.php
File size: 445 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\Persistence\Mapping;
if (!defined('ABSPATH')) exit;
use ReflectionClass;
use ReflectionProperty;
interface ReflectionService
{
 public function getParentClasses($class);
 public function getClassShortName($class);
 public function getClassNamespace($class);
 public function getClass($class);
 public function getAccessibleProperty($class, $property);
 public function hasPublicMethod($class, $method);
}