_identifier = $identifier; } /** * Sets the identifier this expression represents * * @param string $identifier The identifier * @return void */ public function setIdentifier($identifier) { $this->_identifier = $identifier; } /** * Returns the identifier this expression represents * * @return string */ public function getIdentifier() { return $this->_identifier; } /** * Converts the expression to its string representation * * @param \Cake\Database\ValueBinder $generator Placeholder generator object * @return string */ public function sql(ValueBinder $generator) { return $this->_identifier; } /** * This method is a no-op, this is a leaf type of expression, * hence there is nothing to traverse * * @param callable $callable The callable to traverse with. * @return void */ public function traverse(callable $callable) { } }