Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / AssignOp / Pow.php
index b5e5d98fccb9dbaa034f751f572a9f8b11758014..5e1307d1dae824e49652c9e063bc6ea485db4d28 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 Pow extends AssignOp
 {
-}
\ No newline at end of file
+    public function getType() : string {
+        return 'Expr_AssignOp_Pow';
+    }
+}