JamesMoss\Flywheel\Formatter\Markdown::getFileExtension PHP Method

getFileExtension() public method

public getFileExtension ( )
    public function getFileExtension()
    {
        return 'md';
    }

Usage Example

コード例 #1
0
ファイル: MarkdownTest.php プロジェクト: jamesmoss/flywheel
 public function testFileExtension()
 {
     $formatter = new Markdown();
     $this->assertSame('md', $formatter->getFileExtension());
 }