Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 207 Bytes

DontToString.md

File metadata and controls

13 lines (10 loc) · 207 Bytes

DontToString

Prevent converting an object as a string.

use Dont\DontToString;

class MyClass
{
    use DontToString;
}
(new MyClass)->__toString(); // will throw NonStringableObject exception