-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParserInterface.php
More file actions
35 lines (34 loc) · 879 Bytes
/
ParserInterface.php
File metadata and controls
35 lines (34 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* File defining Backend\Interfaces\ParserInterface.
*
* PHP Version 5.3
*
* @category Backend
* @package Interfaces
* @author J Jurgens du Toit <jrgns@backend-php.net>
* @copyright 2011 - 2012 Jade IT (cc)
* @license http://www.opensource.org/licenses/mit-license.php MIT License
* @link http://backend-php.net
*/
namespace Backend\Interfaces;
/**
* A dependency injection container that manages dependencies.
*
* @category Backend
* @package Interfaces
* @author J Jurgens du Toit <jrgns@backend-php.net>
* @license http://www.opensource.org/licenses/mit-license.php MIT License
* @link http://backend-php.net
*/
interface ParserInterface
{
/**
* Parse the string.
*
* @param string $string The string to be parsed.
*
* @return mixed The parsed string
*/
public function parse($string);
}