Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Commit

Permalink
to abstruct
Browse files Browse the repository at this point in the history
  • Loading branch information
rez1dent3 committed Mar 30, 2016
1 parent c0956b5 commit 50b884c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions src/Deimos/Expressions/Parenthesis.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@ public function isOpen()
{
return $this->storage === '(';
}

public function operate(\SplStack $stack)
{
// TODO: Implement operate() method.
}

}
4 changes: 1 addition & 3 deletions src/Deimos/TerminalExpression.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ public static function factory($storage)
/**
* @param \SplStack $stack
*/
public function operate(\SplStack $stack)
{
}
abstract public function operate(\SplStack $stack);

/**
* @return mixed
Expand Down

0 comments on commit 50b884c

Please sign in to comment.