26 lines
		
	
	
	
		
			745 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			745 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Mavimo\Sculpin\Bundle\RedirectBundle\SculpinRedirectBundle;
 | 
						|
use Opdavies\Sculpin\Bundle\ContentGeneratorBundle\SculpinContentGeneratorBundle;
 | 
						|
use Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle;
 | 
						|
use Opdavies\Sculpin\Bundle\TwigMarkdownBundle\SculpinTwigMarkdownBundle;
 | 
						|
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class SculpinKernel
 | 
						|
 */
 | 
						|
class SculpinKernel extends AbstractKernel
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    protected function getAdditionalSculpinBundles()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            SculpinContentGeneratorBundle::class,
 | 
						|
            SculpinGistEmbedBundle::class,
 | 
						|
            SculpinRedirectBundle::class,
 | 
						|
            SculpinTwigMarkdownBundle::class,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |