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