for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AbterPhp\Files\Grid\Factory\Table;
use AbterPhp\Admin\Grid\Factory\TableFactory;
use AbterPhp\Admin\Grid\Factory\Table\BodyFactory;
use AbterPhp\Files\Grid\Factory\Table\Header\FileDownload as HeaderFactory;
class FileDownload extends TableFactory
{
/**
* FileDownload constructor.
*
* @param HeaderFactory $headerFactory
* @param BodyFactory $bodyFactory
*/
public function __construct(HeaderFactory $headerFactory, BodyFactory $bodyFactory)
parent::__construct($headerFactory, $bodyFactory);
}