Home
DevCentral
Search
Configure Global Search
Log In
Transactions
D622
Change Details
Change Details
Old
New
Diff
```lang=php <?php namespace Nasqueron\Notifications\Tests; use Nasqueron\Notifications\Analyzers\Phabricator\PhabricatorPayloadAnalyzer; use Nasqueron\Notifications\Notifications\PhabricatorNotification; use Nasqueron\Notifications\Phabricator\PhabricatorStory; class T993Test extends TestCase { /** * Test T993 is solved. */ public function testT993 () { $data = file_get_contents(__DIR__ . '/T993.payload.json'); $payload = json_decode($data, true); $project = "Nasqueron"; $instance = 'https://devcentral.nasqueron.org'; $story = PhabricatorStory::loadFromArray($instance, $payload); $notification = new PhabricatorNotification($project, $story); } } ```
```lang=php <?php namespace Nasqueron\Notifications\Tests; use Nasqueron\Notifications\Analyzers\Phabricator\PhabricatorPayloadAnalyzer; use Nasqueron\Notifications\Notifications\PhabricatorNotification; use Nasqueron\Notifications\Phabricator\PhabricatorStory; class T993Test extends TestCase { /** * Test T993 is solved. */ public function testT993 () { $data = file_get_contents(__DIR__ . '/T993.payload.json'); $payload = json_decode($data, true); $project = "Nasqueron"; $instance = 'https://devcentral.nasqueron.org'; $story = PhabricatorStory::loadFromArray($instance, $payload); $notification = new PhabricatorNotification($project, $story); } } ```
Continue