public function testCanCallGenericMethdodStatically() { $t = Thunderform::strike(); $this->assertEquals(null, $t::test()); }
<?php /** * Created by: PrometeusWeb * Date: 04/10/2015 * Time: 16:25 */ require_once '../vendor/autoload.php'; $sample = \Thunderform\Thunderform::strike(); echo $sample::text()->hello()->world(); $sample2 = \Thunderform\Thunderform::strike(); echo $sample2::text()->hello('ciao')->world();