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