22 lines
319 B
PHP
22 lines
319 B
PHP
<?php
|
|
namespace MercadoPago\Config;
|
|
|
|
/**
|
|
* Interface ParserInterface
|
|
*
|
|
* @package MercadoPago\Config
|
|
*/
|
|
interface ParserInterface
|
|
{
|
|
/**
|
|
* @param $path
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function parse($path);
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getSupportedExtensions();
|
|
} |