![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/php-amqplib/php-amqplib/PhpAmqpLib/Channel/ |
<?php namespace PhpAmqpLib\Channel; final class Method { /** @var int */ private $class; /** @var int */ private $method; /** @var string */ private $arguments; public function __construct(int $class, int $method, string $arguments) { $this->class = $class; $this->method = $method; $this->arguments = $arguments; } public function getClass(): int { return $this->class; } public function getMethod(): int { return $this->method; } public function getArguments(): string { return $this->arguments; } public function getSignature(): string { return $this->class . ',' . $this->method; } }