Google Cloud Messaging is a service that helps developers send data from servers to their Android applications on Android devices. See Google GCM for more information.
Requests with messages targeting 1000+ registration ID's will automatically be chunked and sent in parallel in order to circumvent the maximum imposed by Google. So you don't have to bother about this restriction when using this class.
<?php
$gcm = new Endroid\Gcm\Gcm($apiKey);
// Registration ID's of devices to target
$registrationIds = array(
...
);
$data = array(
'title' => 'Message title',
'message' => 'Message body',
);
$success = $gcm->send($data, $registrationIds);
If something went wrong or if you just want to inspect the response objects returned by the GCM server, you can retrieve these using the getResponses() method.
You can use GcmBundle
to enable this service in your Symfony applications.