I find myself using -> and => in different scenarios while programming in PHP and I would like to know the difference between these two operators.
Two examples would be:
Cache::section('group')->put('key', $value);
and
return Response::json(array('key' => 'value'));
Just for reference I'll state I use Laravel as my framework.
 
     
     
    