What does it mean to use \":\" before a variable ?
For example, :userId in this code:
:userId
public function removeUser($userI
As thaidiotguy mentions, it's a character commenly used with prepared statements especially with PDO. In PDO the colon tells that the following is a named parameter.