Skip to content

Commit

Permalink
3.5.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Vaduz committed Oct 25, 2018
1 parent 3541bd4 commit f75f4b4
Show file tree
Hide file tree
Showing 7 changed files with 125 additions and 122 deletions.
2 changes: 1 addition & 1 deletion docs/class-LINE.LINEBot.Constant.Meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ <h1>Meta</h1>
<td class="value">
<div>
<a href="#VERSION" class="anchor pull-right">#</a>
<code><span class="php-quote">'3.4.0'</span></code>
<code><span class="php-quote">'3.5.0'</span></code>
</div>
</td>
</tr>
Expand Down
6 changes: 3 additions & 3 deletions docs/class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ <h1>CurlHTTPClient</h1>
<td class="name">
<div>
<a class="anchor pull-right" href="#_get">#</a>
<code><a href="source-class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html#64-67">get</a>( <span> string <span class="property-name">$url</span> </span>, <span> array <span class="property-name">$data</span> = <span class="php-keyword1">array</span> ( )</span>, <span> array <span class="property-name">$headers</span> = <span class="php-keyword1">array</span> ( )</span> )</code>
<code><a href="source-class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html#64-70">get</a>( <span> string <span class="property-name">$url</span> </span>, <span> array <span class="property-name">$data</span> = <span class="php-keyword1">array</span> ( )</span>, <span> array <span class="property-name">$headers</span> = <span class="php-keyword1">array</span> ( )</span> )</code>

<div class="description">
Sends GET request to LINE Messaging API.
Expand Down Expand Up @@ -206,7 +206,7 @@ <h2>Implementation of</h2>
<td class="name">
<div>
<a class="anchor pull-right" href="#_post">#</a>
<code><a href="source-class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html#78-82">post</a>( <span> string <span class="property-name">$url</span> </span>, <span> array <span class="property-name">$data</span> </span>, <span> array <span class="property-name">$headers</span> = <span class="php-keyword1">NULL</span></span> )</code>
<code><a href="source-class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html#81-85">post</a>( <span> string <span class="property-name">$url</span> </span>, <span> array <span class="property-name">$data</span> </span>, <span> array <span class="property-name">$headers</span> = <span class="php-keyword1">NULL</span></span> )</code>

<div class="description">
Sends POST request to LINE Messaging API.
Expand Down Expand Up @@ -246,7 +246,7 @@ <h2>Implementation of</h2>
<td class="name">
<div>
<a class="anchor pull-right" href="#_delete">#</a>
<code><a href="source-class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html#91-94">delete</a>( <span> string <span class="property-name">$url</span> </span> )</code>
<code><a href="source-class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html#94-97">delete</a>( <span> string <span class="property-name">$url</span> </span> )</code>

<div class="description">
Sends DELETE request to LINE Messaging API.
Expand Down
2 changes: 1 addition & 1 deletion docs/source-class-LINE.LINEBot.Constant.Meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
</span><span class="l" id="line-20">
</span><span class="l" id="line-21"><span class="php-keyword1">class</span> Meta
</span><span class="l" id="line-22">{
</span><span class="l" id="line-23"> <span class="php-keyword1">const</span> VERSION = <span class="php-quote">'3.4.0'</span>;
</span><span class="l" id="line-23"> <span class="php-keyword1">const</span> VERSION = <span class="php-quote">'3.5.0'</span>;
</span><span class="l" id="line-24">}
</span><span class="l" id="line-25"></span><br></code></pre>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,21 @@
</span><span class="l" id="line-40"> <span class="php-comment">/**
</span></span><span class="l" id="line-41"><span class="php-comment"> * Returns title of the location message.
</span></span><span class="l" id="line-42"><span class="php-comment"> *
</span></span><span class="l" id="line-43"><span class="php-comment"> * @return string
</span></span><span class="l" id="line-43"><span class="php-comment"> * @return string|null
</span></span><span class="l" id="line-44"><span class="php-comment"> */</span>
</span><span class="l" id="line-45"> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> getTitle()
</span><span class="l" id="line-46"> {
</span><span class="l" id="line-47"> <span class="php-keyword1">return</span> <span class="php-var">$this</span>-&gt;message[<span class="php-quote">'title'</span>];
</span><span class="l" id="line-47"> <span class="php-keyword1">return</span> <span class="php-keyword2">array_key_exists</span>(<span class="php-quote">'title'</span>, <span class="php-var">$this</span>-&gt;message) ? <span class="php-var">$this</span>-&gt;message[<span class="php-quote">'title'</span>] : <span class="php-keyword1">null</span>;
</span><span class="l" id="line-48"> }
</span><span class="l" id="line-49">
</span><span class="l" id="line-50"> <span class="php-comment">/**
</span></span><span class="l" id="line-51"><span class="php-comment"> * Returns address of the location message.
</span></span><span class="l" id="line-52"><span class="php-comment"> *
</span></span><span class="l" id="line-53"><span class="php-comment"> * @return string
</span></span><span class="l" id="line-53"><span class="php-comment"> * @return string|null
</span></span><span class="l" id="line-54"><span class="php-comment"> */</span>
</span><span class="l" id="line-55"> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> getAddress()
</span><span class="l" id="line-56"> {
</span><span class="l" id="line-57"> <span class="php-keyword1">return</span> <span class="php-var">$this</span>-&gt;message[<span class="php-quote">'address'</span>];
</span><span class="l" id="line-57"> <span class="php-keyword1">return</span> <span class="php-keyword2">array_key_exists</span>(<span class="php-quote">'address'</span>, <span class="php-var">$this</span>-&gt;message) ? <span class="php-var">$this</span>-&gt;message[<span class="php-quote">'address'</span>] : <span class="php-keyword1">null</span>;
</span><span class="l" id="line-58"> }
</span><span class="l" id="line-59">
</span><span class="l" id="line-60"> <span class="php-comment">/**
Expand Down
225 changes: 114 additions & 111 deletions docs/source-class-LINE.LINEBot.HTTPClient.CurlHTTPClient.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/source-interface-LINE.LINEBot.HTTPClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</span></span><span class="l" id="line-31"><span class="php-comment"> * Sends GET request to LINE Messaging API.
</span></span><span class="l" id="line-32"><span class="php-comment"> *
</span></span><span class="l" id="line-33"><span class="php-comment"> * @param string $url Request URL.
</span></span><span class="l" id="line-34"><span class="php-comment"> * @param array $data Request body.
</span></span><span class="l" id="line-34"><span class="php-comment"> * @param array $data URL parameters.
</span></span><span class="l" id="line-35"><span class="php-comment"> * @param array $headers
</span></span><span class="l" id="line-36"><span class="php-comment"> * @return Response Response of API request.
</span></span><span class="l" id="line-37"><span class="php-comment"> */</span>
Expand Down
2 changes: 1 addition & 1 deletion src/LINEBot/Constant/Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@

class Meta
{
const VERSION = '3.4.0';
const VERSION = '3.5.0';
}

0 comments on commit f75f4b4

Please sign in to comment.