Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / AssignOp / ShiftLeft.php
index 84b2d56b8f5f69c420e71cc34b77df5c0a22e075..b8f88269b682f465abc08cb01ba15cf87b470d2f 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Expr\AssignOp;
 
@@ -6,4 +6,7 @@ use PhpParser\Node\Expr\AssignOp;
 
 class ShiftLeft extends AssignOp
 {
-}
\ No newline at end of file
+    public function getType() : string {
+        return 'Expr_AssignOp_ShiftLeft';
+    }
+}