PHP Classes

File: tests/src/Ns/Lib/ServiceAutoParam.php

Recommend this page to a friend!
  Packages of Thierry Feuzeu   Jaxon   tests/src/Ns/Lib/ServiceAutoParam.php   Download  
File: tests/src/Ns/Lib/ServiceAutoParam.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: 323 bytes
 

Contents

Class file image Download
<?php

namespace Jaxon\Tests\Ns\Lib;

class
ServiceAutoParam
{
   
/**
     * @var Service $service
     */
   
private $service;

    public function
__construct($service)
    {
       
$this->service = $service;
    }

    public function
serviceSource(): string
   
{
        return
$this->service->getSource();
    }
}