<?xml version="1.0" encoding="ISO-8859-1"?>
<slide fontsize="6em">
	<title>Protected</title>

	<list marginleft="-1em" fontsize="3.3em">
		<bullet>Only accessable/callable by the same, or an inherited class</bullet>
		<bullet>Useful for 'packages'</bullet>
	</list>
	<break lines="1" />

    <example fontsize="1.05em"><![CDATA[<?php
	class Bedroom {
		protected $action;

		function __construct() {
			$this->action = 'fun';
		}

		protected function peek() {
			echo $this->action. "\n";
		}
	}

	class Keyhole extends Bedroom {
		function peek() {
			echo $this->action. "\n";
		}
	}

	$kh = new Keyhole();
	$kh->peek();

	$br = new Bedroom();
	$br->peek();           /* Doesn't work */
? >]]></example>
</slide>
