StringCastable
last analyzed

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
__toString() 0 1 ?
1
<?php
2
namespace FluentDOM\Utility {
3
4
5
  interface StringCastable {
6
7
    public function __toString(): string;
8
9
  }
10
}