當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TestHandler::pushProcessor方法代碼示例

本文整理匯總了PHP中Monolog\Handler\TestHandler::pushProcessor方法的典型用法代碼示例。如果您正苦於以下問題:PHP TestHandler::pushProcessor方法的具體用法?PHP TestHandler::pushProcessor怎麽用?PHP TestHandler::pushProcessor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Monolog\Handler\TestHandler的用法示例。


在下文中一共展示了TestHandler::pushProcessor方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setUp

 public function setUp()
 {
     $storageApiService = new StorageApiService(new RequestStack());
     $storageApiService->setClient(new Client(['token' => SYRUP_SAPI_TEST_TOKEN, 'url' => SYRUP_SAPI_TEST_URL]));
     $uploader = new UploaderS3(['aws-access-key' => SYRUP_AWS_KEY, 'aws-secret-key' => SYRUP_AWS_SECRET, 's3-upload-path' => SYRUP_S3_BUCKET, 'aws-region' => SYRUP_AWS_REGION, 'url-prefix' => 'https://connection.keboola.com/admin/utils/logs?file=']);
     $this->testLogHandler = new TestHandler();
     $this->testLogHandler->setFormatter(new JsonFormatter());
     $this->testLogHandler->pushProcessor(new SyslogProcessor(SYRUP_APP_NAME, $storageApiService, $uploader));
     $logger = new \Monolog\Logger('test', [$this->testLogHandler]);
     $this->listener = new SyrupExceptionListener(SYRUP_APP_NAME, $storageApiService, $logger);
 }
開發者ID:keboola,項目名稱:syrup,代碼行數:11,代碼來源:SyrupExceptionListenerTest.php

示例2: setUp

 public function setUp()
 {
     $storageApiService = new StorageApiService();
     $storageApiService->setClient(new Client(['token' => SYRUP_SAPI_TEST_TOKEN]));
     $uploader = new Uploader(['aws-access-key' => SYRUP_AWS_KEY, 'aws-secret-key' => SYRUP_AWS_SECRET, 's3-upload-path' => SYRUP_S3_BUCKET, 'aws-region' => SYRUP_AWS_REGION]);
     $this->testLogHandler = new TestHandler();
     $this->testLogHandler->setFormatter(new JsonFormatter());
     $this->testLogHandler->pushProcessor(new SyslogProcessor(SYRUP_APP_NAME, $storageApiService, $uploader));
     $logger = new \Monolog\Logger('test', [$this->testLogHandler]);
     $this->listener = new SyrupExceptionListener(SYRUP_APP_NAME, $storageApiService, $logger);
 }
開發者ID:ErikZigo,項目名稱:syrup,代碼行數:11,代碼來源:SyrupExceptionListenerTest.php

示例3: testPushPopProcessor

 /**
  * @covers Monolog\Handler\AbstractHandler::pushProcessor
  * @covers Monolog\Handler\AbstractHandler::popProcessor
  * @expectedException LogicException
  */
 public function testPushPopProcessor()
 {
     $logger = new TestHandler();
     $processor1 = new WebProcessor();
     $processor2 = new WebProcessor();
     $logger->pushProcessor($processor1);
     $logger->pushProcessor($processor2);
     $this->assertEquals($processor2, $logger->popProcessor());
     $this->assertEquals($processor1, $logger->popProcessor());
     $logger->popProcessor();
 }
開發者ID:robertowest,項目名稱:CuteFlow-V4,代碼行數:16,代碼來源:AbstractHandlerTest.php

示例4: getHandler

 public function getHandler()
 {
     $processor = new IntrospectionProcessor();
     $handler = new TestHandler();
     $handler->pushProcessor($processor);
     return $handler;
 }
開發者ID:kalaspuffar,項目名稱:php-orm-benchmark,代碼行數:7,代碼來源:IntrospectionProcessorTest.php

示例5: testProcessRecord

 /**
  * @covers Monolog\Handler\AbstractProcessingHandler::processRecord
  */
 public function testProcessRecord()
 {
     $handler = new TestHandler();
     $handler->pushProcessor(new WebProcessor(array('REQUEST_URI' => '', 'REQUEST_METHOD' => '', 'REMOTE_ADDR' => '')));
     $handler->handle($this->getRecord());
     list($record) = $handler->getRecords();
     $this->assertEquals(3, count($record['extra']));
 }
開發者ID:robertowest,項目名稱:CuteFlow-V4,代碼行數:11,代碼來源:AbstractProcessingHandlerTest.php


注:本文中的Monolog\Handler\TestHandler::pushProcessor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。