| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- /*
- * This file is part of the php-phantomjs.
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace JonnyW\PhantomJs\Message;
- /**
- * PHP PhantomJs
- *
- * @author Jon Wenmoth <contact@jonnyw.me>
- */
- class MessageFactory implements MessageFactoryInterface
- {
- /**
- * Client instance
- *
- * @var \JonnyW\PhantomJs\Message\MessageFactory
- * @access private
- */
- private static $instance;
- /**
- * Get singleton instance.
- *
- * @access public
- * @return \JonnyW\PhantomJs\Message\MessageFactory
- */
- public static function getInstance()
- {
- if (!self::$instance instanceof MessageFactoryInterface) {
- self::$instance = new MessageFactory();
- }
- return self::$instance;
- }
- /**
- * Create request instance.
- *
- * @access public
- * @param string $url
- * @param string $method
- * @param int $timeout
- * @return \JonnyW\PhantomJs\Message\Request
- */
- public function createRequest($url = null, $method = RequestInterface::METHOD_GET, $timeout = 5000)
- {
- return new Request($url, $method, $timeout);
- }
- /**
- * Create capture request instance.
- *
- * @access public
- * @param string $url
- * @param string $method
- * @param int $timeout
- * @return \JonnyW\PhantomJs\Message\Request
- */
- public function createCaptureRequest($url = null, $method = RequestInterface::METHOD_GET, $timeout = 5000)
- {
- return new CaptureRequest($url, $method, $timeout);
- }
- /**
- * Create response instance.
- *
- * @access public
- * @return \JonnyW\PhantomJs\Message\Response
- */
- public function createResponse()
- {
- return new Response();
- }
- }
|