Cancelled
Push — master ( 90b90a...d1d279 )
by Josh
10:16
created

BaseImplementation::split()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
nc 1
1
<?php
2
3
/**
4
* @package   s9e\RegexpBuilder
5
* @copyright Copyright (c) 2016 The s9e Authors
6
* @license   http://www.opensource.org/licenses/mit-license.php The MIT License
7
*/
8
namespace s9e\RegexpBuilder\Input;
9
10
abstract class BaseImplementation implements InputInterface
11
{
12
	/**
13
	* {@inheritdoc}
14
	*/
15
	public function __construct(array $options = [])
16
	{
17
	}
18
19
	/**
20
	* {@inheritdoc}
21
	*/
22
	abstract public function split($string);
23
}