for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Isign\DocumentTypeGuesser;
class Adoc implements DocumentTypeGuesserInterface
{
public function guess($content, $extension)
if ($extension != 'adoc') {
return;
}
return 'adoc';