Skip to content
Snippets Groups Projects
Select Git revision
  • 4771218ed38bc518649fe04d7ea5f6f9aaf84c77
  • main default protected
  • just_for_review
  • 1.0.0
4 results

Placeholder.jsx

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();
    }