[lang-ref] Assert true ( php )

<?php
public function testAssertTrue(): void
{
	// assertTrue($r)
	$r = (1 + 1 == 2);

	$this->assertTrue($r);
}