ProfileStatSenderInterface.php in Brainstorm profile 8
Namespace
Drupal\profile_stat_senderFile
module/custom/profile_stat_sender/src/ProfileStatSenderInterface.phpView source
<?php
namespace Drupal\profile_stat_sender;
/**
* Provides an interface for sending profile information to server.
*/
interface ProfileStatSenderInterface {
/**
* Makes http POST request to server.
*
* @return numeric
* Returns response code from server.
*/
public function sendData();
}
Interfaces
Name | Description |
---|---|
ProfileStatSenderInterface | Provides an interface for sending profile information to server. |