1<?php
2class AssertionExample
3{
4    public function doSomething()
5    {
6        assert(false);
7    }
8}
9