for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/phpviet/symfony-number-to-words
*
* @copyright (c) PHP Viet
* @license [MIT](https://opensource.org/licenses/MIT)
*/
namespace PHPViet\Symfony\NumberToWords;
use Symfony\Component\HttpKernel\Bundle\Bundle as BaseBundle;
use PHPViet\Symfony\NumberToWords\DependencyInjection\Extension;
* @author Vuong Minh <[email protected]>
* @since 1.0.0
class Bundle extends BaseBundle
{
* {@inheritdoc}
protected $name = 'PHPVietNumberToWordsBundle';
public function getContainerExtension(): Extension
if (null === $this->extension) {
$this->extension = new Extension();
}
return $this->extension;