summaryrefslogtreecommitdiff
path: root/test/scanners/php/elvis.in.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/scanners/php/elvis.in.php')
-rw-r--r--test/scanners/php/elvis.in.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/scanners/php/elvis.in.php b/test/scanners/php/elvis.in.php
deleted file mode 100644
index 4626a93..0000000
--- a/test/scanners/php/elvis.in.php
+++ /dev/null
@@ -1,27 +0,0 @@
-$this?$is+NO:$label;
-
-// Two labels:
-foo: switch (TYPE(v)) {
- case T_CLASS: case T_MODULE:
- rb_str_append(s, rb_inspect(v));
- break;
- default:
- bar:
- rb_str_append(s, rb_any_to_s(v));
- break;
-}
-// These are two more labels:
-function(call);
-label2: label3: a = b + c;
-
-// Another label:
-if (1) {
- label4: a = b + c;
-}
-
-// Not a label.
-test(
- a?
- b:
- c
-) \ No newline at end of file