コード例 #1
0
 public function testCanCallGenericMethdodStatically()
 {
     $t = Thunderform::strike();
     $this->assertEquals(null, $t::test());
 }
コード例 #2
0
<?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();