Skip to content

Commit

Permalink
Add convenience methods and make setters fluent (#82)
Browse files Browse the repository at this point in the history
* Add convenience methods and make setters fluent

* Add fluent setters and type-hints to customer
  • Loading branch information
davidstanley01 committed Jan 15, 2019
1 parent 6244b48 commit 57c25da
Show file tree
Hide file tree
Showing 26 changed files with 1,046 additions and 168 deletions.
14 changes: 14 additions & 0 deletions src/Conversations/ChatConversation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

declare(strict_types=1);

namespace HelpScout\Api\Conversations;

class ChatConversation extends Conversation
{
public function __construct()
{
parent::__construct();
$this->setType(static::TYPE_CHAT);
}
}
Loading

0 comments on commit 57c25da

Please sign in to comment.