Skip to content
Snippets Groups Projects
Select Git revision
  • 028e5edb562136a1181d9cb1be92d1cf79339f49
  • master default protected
  • fix/deprecated_functions
  • devel
  • feat/translations
  • feat/upgrade_to_pro_url
  • feat/lang
  • bugfix/require-interface
  • bugfix/require-once-error
  • feature/activation-hooks
  • feature/template-loader
  • feature/template-renderer
  • feature/plugin-activation
  • feature/hookable-object
  • feature/builder-pattern
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • 2.0.0
  • 2.0.0-beta1
  • 1.4.4
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1
  • 1.0
32 results

AbstractPlugin.php

Blame
  • Token.php 515 B
    <?php
    
    namespace WPDesk\ApiClient\Authentication;
    
    interface Token
    {
        /**
         * Get string to perform authentication
         *
         * @return string
         */
        public function getAuthString();
    
        /**
         * Is token expired or very soon to be expired?
         *
         * @return bool
         */
        public function isExpired();
    
        /**
         * Validates token signature
         *
         * @return bool
         */
        public function isSignatureValid();
    
        /**
         * @return string
         */
        public function __toString();
    }