16 lines
No EOL
274 B
PHP
16 lines
No EOL
274 B
PHP
<?php
|
|
namespace App\Bin;
|
|
|
|
session_start();
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use App\Soshot\MakeThumb;
|
|
|
|
if(file_exists(__DIR__ . '/../cache/tmp/chrome-php-socket')){
|
|
echo 'Work in progress';
|
|
exit();
|
|
}
|
|
|
|
$makeThumb = new MakeThumb;
|
|
$makeThumb->compute(); |