This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Monolog Slack Handler | |
* | |
* This adds the ability to post a message to your Chosen Slack channel easily with Monolog. | |
* | |
* Here is an example of using this handler: | |
* $logger->pushHandler(new SlackHandler("your-account-name", "your-token-code", "#your-channel-name", "name-to-post-message-as", "url-to-image-file", Logger::INFO, true)); | |
* |