Skip to content

3.6.0

Latest
Compare
Choose a tag to compare
@chesn0k chesn0k released this 20 May 16:51
· 87 commits to 4.x since this release
  • Added sort_namespaces twig filter.
  • The sort twig tag has been deprecated in favor of a sort_namespaces twig filter.

Before:

{% sort %}
use Drupal\Core\Controller\ControllerBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Component\Utility\Random;
{% endsort %}

After:

{% apply sort_namespaces %}
use Drupal\Core\Controller\ControllerBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Component\Utility\Random;
{% endapply %}