aboutsummaryrefslogtreecommitdiff
path: root/NXP/Classes/Func.php
diff options
context:
space:
mode:
authorzhukv <zhuk2205@gmail.com>2013-08-03 14:47:47 +0400
committerzhukv <zhuk2205@gmail.com>2013-08-03 14:47:47 +0400
commiteb9c3651614dd5e5aef067880092e9f622c264df (patch)
treee093d7928420255e986acb44d4ab34634f601c52 /NXP/Classes/Func.php
parent253fb694a3fcafa3f9ea6da6681f0b176cdec1f4 (diff)
Fix to PSR standart, fix tokenizer, fix function executor.
Diffstat (limited to 'NXP/Classes/Func.php')
-rw-r--r--NXP/Classes/Func.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/NXP/Classes/Func.php b/NXP/Classes/Func.php
deleted file mode 100644
index b3e5b93..0000000
--- a/NXP/Classes/Func.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-/**
- * Author: Alexander "NeonXP" Kiryukhin
- * Date: 17.03.13
- * Time: 4:30
- */
-
-namespace NXP\Classes;
-
-
-class Func {
- /**
- * @var string
- */
- private $name;
-
- /**
- * @var callable
- */
- private $callback;
-
- /**
- * @param $name
- * @param $callback
- */
- function __construct($name, $callback)
- {
- $this->name = $name;
- $this->callback = $callback;
- }
-
- public function getName()
- {
- return $this->name;
- }
-
- public function getCallback()
- {
- return $this->callback;
- }
-} \ No newline at end of file