You are here

ProfileStatSenderInterface.php in Brainstorm profile 8

File

module/custom/profile_stat_sender/src/ProfileStatSenderInterface.php
View 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

Namesort descending Description
ProfileStatSenderInterface Provides an interface for sending profile information to server.