summaryrefslogtreecommitdiff
path: root/tests/examplefiles/test.zep
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/test.zep')
-rw-r--r--tests/examplefiles/test.zep33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/examplefiles/test.zep b/tests/examplefiles/test.zep
deleted file mode 100644
index 4724d4c4..00000000
--- a/tests/examplefiles/test.zep
+++ /dev/null
@@ -1,33 +0,0 @@
-namespace Test;
-
-use Test\Foo;
-
-class Bar
-{
- protected a;
- private b;
- public c {set, get};
-
- public function __construct(string str, boolean bool)
- {
- let this->c = str;
- this->setC(bool);
- let this->b = [];
- }
-
- public function sayHello(string name)
- {
- echo "Hello " . name;
- }
-
- protected function loops()
- {
- for a in b {
- echo a;
- }
- loop {
- return "boo!";
- }
- }
-
-} \ No newline at end of file