A _____ is what we call a function inside of a class.
method
A _____ is what we call a variable inside of a class.
property
Describe a Class in object oriented PHP
An extensible template for creating objects, providing initial values for state and implementations of behavior.
What are the three main areas of focus in regards to object oriented programming?
Describe an object when related to OOP
Individual instances of Class created by using the new operand.
_____ is a language mechanism for restricting access to some of the object’s components by using visibility keywords
Encapsulation
Create a class called Fish.
<?php <br/>class Fish {
}
$bluegill = new Fish();
?\>