#!/usr/bin/php -q #li3 > Lithium Documentation > app/controllers/CommandController::_never()

Source

						protected function _never() {
		if ($this->request->query['cmd'] != 'never gonna') {
			return $this->_text('Did you mean "never gonna" ?');
		}
		$gonna = array(
			'give you up',
			'let you down',
			'run around and desert you',
			'make you cry',
			'say goodbye',
			'tell a lie and hurt you'
		);
		shuffle($gonna);
		return $this->_text($gonna[0]);
	}