14 lines
204 B
PHP
14 lines
204 B
PHP
<?php
|
|
|
|
namespace KupShop\FeedGeneratorBundle\Utils;
|
|
|
|
interface IObjectInfo
|
|
{
|
|
/**
|
|
* @throws \ReflectionException
|
|
*
|
|
* @private
|
|
*/
|
|
public function getFieldsAndMethods(): array;
|
|
}
|