Unlock this challenge:
That was totally worth waiting on lunch! But now that lunch is over we have the energy to continue coding. How can we add a use statement for the Pizza class to shorten the line that creates the new Pizza?
use
Pizza
use Food\Tasty\Pizza; $pizza = new Pizza();
use = Food\Tasty\Pizza; $pizza = new Pizza();
use Food\Tasty; $pizza = new Pizza();
namespace Food\Tasty\Pizza; $pizza = new Pizza();