diff --git a/README.md b/README.md
index a1ca33f..40d1e17 100644
--- a/README.md
+++ b/README.md
@@ -4,11 +4,12 @@
 ![Kashmir Screenshot](screenshot.png)
 
 #### Features
-- **Lean**: Uses Stable templates and no opinionated files or libraries included.
+- **Lean**: Uses Stable templates and no opinionated files or libraries included
 - **Patternlab**: Architected to support Patternlab with Drupal.
-- **Static Code Analysis**: Checks both scripts and styles for stylistic and syntax errors.
+- **Static Code Analysis**: Checks both scripts and styles for stylistic and
+    syntax errors.
 - **SVG**: Support SVG sprite generation.
-- **Performance Testing**: Generates info logs for all the stylesheets generated.
+- **Performance Testing**: Generates info logs for all the stylesheets generated
 
 
 #### Setup
@@ -45,7 +46,8 @@
 - Generate a sub-theme
   - `drush kashmir sub_theme_name`
 - Configure settings
-  - Update settings in `gulp/_config.js` for Browsersync and Source for scripts and styles.
+  - Update settings in `gulp/_config.js` for Browsersync and Source for scripts
+    and styles.
 
 
 #### Usage
diff --git a/components/_twig-components/tags/trans.tag.php b/components/_twig-components/tags/trans.tag.php
index 338aadc..68e8dbe 100755
--- a/components/_twig-components/tags/trans.tag.php
+++ b/components/_twig-components/tags/trans.tag.php
@@ -10,23 +10,23 @@
  */
 
 // These files are loaded three times and we can't re-set a class.
-if (!class_exists("Project_trans_Node")) {
+if (!class_exists("ProjectTransNode")) {
 
   /**
-   * Class Project_trans_Node.
+   * Class ProjectTransNode.
    */
-  class Project_trans_Node extends \Twig_Node {
+  class ProjectTransNode extends \Twig_Node {
 
     /**
      * {@inheritdoc}
      */
     public function __construct(\Twig_Node $body, \Twig_Node $plural = NULL, \Twig_Node_Expression $count = NULL, \Twig_Node_Expression $options = NULL, $lineno, $tag = NULL) {
-      parent::__construct(array(
+      parent::__construct([
         'count' => $count,
         'body' => $body,
         'plural' => $plural,
         'options' => $options,
-      ), array(), $lineno, $tag);
+      ], [], $lineno, $tag);
     }
 
     /**
@@ -58,10 +58,10 @@ if (!class_exists("Project_trans_Node")) {
      */
     protected function compileString(\Twig_Node $body) {
       if ($body instanceof \Twig_Node_Expression_Name || $body instanceof \Twig_Node_Expression_Constant || $body instanceof \Twig_Node_Expression_TempName) {
-        return array($body, array());
+        return [$body, []];
       }
 
-      $tokens = array();
+      $tokens = []
       if (count($body)) {
         $text = '';
 
@@ -98,7 +98,7 @@ if (!class_exists("Project_trans_Node")) {
               $args = $args->getNode('node');
             }
             if ($args instanceof \Twig_Node_Expression_GetAttr) {
-              $argName = array();
+              $argName = [];
               // Reuse the incoming expression.
               $expr = $args;
               // Assemble a valid argument name by walking through the
@@ -137,12 +137,12 @@ if (!class_exists("Project_trans_Node")) {
         $text = $body->getAttribute('data');
       }
 
-      return array(
+      return [
         new \Twig_Node(
-          array(new \Twig_Node_Expression_Constant(trim($text), $body->getLine()))
+          [new \Twig_Node_Expression_Constant(trim($text), $body->getLine())]
         ),
         $tokens,
-      );
+      ];
     }
 
   }
@@ -150,12 +150,12 @@ if (!class_exists("Project_trans_Node")) {
 }
 
 // These files are loaded three times and we can't re-set a class.
-if (!class_exists("Project_trans_TokenParser")) {
+if (!class_exists("ProjectTransTokenParser")) {
 
   /**
-   * Class Project_trans_TokenParser.
+   * Class ProjectTransTokenParser.
    */
-  class Project_trans_TokenParser extends \Twig_TokenParser {
+  class ProjectTransTokenParser extends \Twig_TokenParser {
 
     /**
      * {@inheritdoc}
@@ -177,11 +177,11 @@ if (!class_exists("Project_trans_TokenParser")) {
       }
       if (!$body) {
         $stream->expect(\Twig_Token::BLOCK_END_TYPE);
-        $body = $this->parser->subparse(array($this, 'decideForFork'));
+        $body = $this->parser->subparse([$this, 'decideForFork']);
         if ('plural' === $stream->next()->getValue()) {
           $count = $this->parser->getExpressionParser()->parseExpression();
           $stream->expect(\Twig_Token::BLOCK_END_TYPE);
-          $plural = $this->parser->subparse(array($this, 'decideForEnd'), TRUE);
+          $plural = $this->parser->subparse([$this, 'decideForEnd'], TRUE);
         }
       }
 
@@ -189,7 +189,7 @@ if (!class_exists("Project_trans_TokenParser")) {
 
       $this->checkTransString($body, $lineno);
 
-      $node = new Project_trans_Node($body, $plural, $count, $options, $lineno, $this->getTag());
+      $node = new ProjectTransNode($body, $plural, $count, $options, $lineno, $this->getTag());
 
       return $node;
     }
@@ -198,7 +198,7 @@ if (!class_exists("Project_trans_TokenParser")) {
      * Detect a 'plural' switch or the end of a 'trans' tag.
      */
     public function decideForFork($token) {
-      return $token->test(array('plural', 'endtrans'));
+      return $token->test(['plural', 'endtrans']);
     }
 
     /**
diff --git a/kashmir.drush.inc b/kashmir.drush.inc
index 3136672..5b4103a 100644
--- a/kashmir.drush.inc
+++ b/kashmir.drush.inc
@@ -330,4 +330,3 @@ function _kashmir_notify($human_readable_name, $theme_path) {
   ]);
   drush_print($message);
 }
-
