Skip to content

Commit

Permalink
reordered
Browse files Browse the repository at this point in the history
  • Loading branch information
simialbi committed Jun 10, 2021
1 parent c8e57a1 commit 091bece
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ class Connection extends Component
public $useFilterKeyword = true;

/**
* @var boolean Whether the connection should throw an exception if response is not 200 or not
* @var string The method to use for update operations. Defaults to [[put]].
*/
public $enableExceptions = false;
public $updateMethod = 'put';

/**
* @var string The method to use for update operations. Defaults to [[put]].
* @var boolean Whether the connection should throw an exception if response is not 200 or not
*/
public $updateMethod = 'put';
public $enableExceptions = false;

/**
* @var boolean Whether we are in test mode or not (prevent execution)
Expand Down

0 comments on commit 091bece

Please sign in to comment.