1 <?php
2 namespace apemsel\AttributedString;
3
4 interface Attribute extends \ArrayAccess, \Countable
5 {
6 public function setRange($from, $to, $state = true);
7 public function toString($true = "1", $false = "0");
8 public function search($offset = 0, $returnLength = false, $state = true, $strict = true);
9 }
10