comsave/soap-client

View on GitHub
src/Phpforce/SoapClient/Result/GetServerTimestampResult.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phpforce\SoapClient\Result;

class GetServerTimestampResult
{
    protected $timestamp;

    /**
     * @return \DateTime
     */
    public function getTimestamp()
    {
        return $this->timestamp;
    }
}