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