PHP Classes

File: src/Request/TargetInterface.php

Recommend this page to a friend!
  Packages of Thierry Feuzeu   Jaxon   src/Request/TargetInterface.php   Download  
File: src/Request/TargetInterface.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change:
Date: 4 months ago
Size: 288 bytes
 

Contents

Class file image Download
<?php

namespace Jaxon\Request;

interface
TargetInterface
{
   
/**
     * The target method name.
     *
     * @return string
     */
   
public function method(): string;

   
/**
     * The target method args.
     *
     * @return array
     */
   
public function args(): array;
}