Denis Brumann //
[email protected] // @dbrumann
class ProductController
{
/**
* @Route("/api/products")
*/
public function listProducts()
{
return [
1 => [
'id' => 1,
'name' => 'Awesome Product',
'description' => 'Lorem ipsum dolor sit amet...',
'price' => 350,
],
3 => [
'id' => 3,
'name' => 'Cool Product',
'description' => 'One morning, when Gregor Samsa...',
'price' => 999,
],
];
}
}
12
!❗