Skip to content
Snippets Groups Projects
Select Git revision
  • 017164f24be15dcedac04bee4cc5f72e8ec38fee
  • 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

ClassNotExists.php

Blame
  • ApiResponse.php 565 B
    <?php
    
    namespace WPDesk\ApiClient\Response;
    
    
    interface ApiResponse extends Response
    {
        /**
         * Get links structure to the other request
         *
         * @return array
         */
        public function getLinks();
    
        /**
         * Is it a BAD REQUEST response
         *
         * @return bool
         */
        public function isBadRequest();
    
        /**
         * Is it a FATAL ERROR response
         *
         * @return bool
         */
        public function isServerFatalError();
    
        /**
         * Is requested resource exists
         *
         * @return bool
         */
        public function isNotExists();
    }