Unlock this challenge:
The intern was messing around and changed the use statement for Pizza to use an alias: ItalianTreat. Without changing that line, how can you update the new line so that the code runs using the new alias?
use
Pizza
ItalianTreat
new
use Food\Tasty\Pizza as ItalianTreat; // ... $pizza = new PizzaItalianTreat();
use Food\Tasty\Pizza as ItalianTreat; // ... $pizza = new ItalianTreat();
use Food\Tasty\Pizza as ItalianTreat; // ... $pizza = new Pizza\ItalianTreat();
use Food\Tasty\Pizza as ItalianTreat; // ... $pizza = new ItalianTreatPizza();