Skip to content

Commit

Permalink
add Opportunities module
Browse files Browse the repository at this point in the history
  • Loading branch information
aliaksei.kalesnikau committed Nov 12, 2019
1 parent befd3cf commit c1b9b0e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
"license": "MIT",
"require": {
"php": ">=5.6.0",
"php": ">=7.0.0",
"sugarcrm/rest-php-client": "^1.4"
}
,
Expand Down
23 changes: 23 additions & 0 deletions src/Opportunities.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php


namespace Altoros\Sugar;

/**
* Class Opportunities
* @package Altoros\Sugar
*/
class Opportunities extends Bean
{
protected $moduleName = 'Opportunities';

protected $fields = [];

/**
* Documents constructor.
*/
public function __construct()
{
parent::__construct($this->moduleName, $this->fields);
}
}

0 comments on commit c1b9b0e

Please sign in to comment.