eZ\Bundle\EzPublishCoreBundle\Composer\ScriptHandler::dumpAssetsHelpText PHP Method

dumpAssetsHelpText() public static method

Typically to use this instead on composer update as dump command uses prod environment where cache is not cleared, causing it to sometimes crash when cache needs to be cleared.
Deprecation: Will be made private in the future for use by dumpAssets.
public static dumpAssetsHelpText ( Composer\Script\Event $event )
$event Composer\Script\Event Event A instance
    public static function dumpAssetsHelpText(Event $event)
    {
        $event->getIO()->write('<info>To dump eZ Publish production assets, which is needed for production environment, execute the following:</info>');
        $event->getIO()->write('    php app/console assetic:dump --env=prod web');
        $event->getIO()->write('');
    }