Adding a property to a class

/**
 * A PHP Class that does things
 */
class Class_That_Does_Stuff {

  /**
   * A public class property
   * 
   * (variables that float out here are called
   *   properties & are accessible everywhere 
   *   inside the class)
   */
  public $words_to_say = 'do stuff';

}