for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Pagerfanta package.
*
* (c) Pablo Díez <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pagerfanta\View;
use Pagerfanta\View\Template\TwitterBootstrap4Template;
/**
* TwitterBootstrap4View.
* View that can be used with the pagination module
* from the Twitter Bootstrap4 CSS Toolkit
* http://getbootstrap.com/
class TwitterBootstrap4View extends TwitterBootstrapView
{
protected function createDefaultTemplate()
return new TwitterBootstrap4Template();
}
* {@inheritdoc}
public function getName()
return 'twitter_bootstrap4';