Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsupplee committed Feb 5, 2019
1 parent 123673c commit 0d924de
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ $response = $client->createCompany(

#### google/cloud-talent

[Google Cloud Speech](https://github.com/googleapis/google-cloud-php-talent) can be installed separately by requiring the [`google/cloud-talent`](https://packagist.org/packages/google/cloud-talent) composer package:
[Google Cloud Talent Solution](https://github.com/googleapis/google-cloud-php-talent) can be installed separately by requiring the [`google/cloud-talent`](https://packagist.org/packages/google/cloud-talent) composer package:

```
$ composer require google/cloud-talent
Expand Down
14 changes: 14 additions & 0 deletions Talent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,20 @@ on authenticating your client. Once authenticated, you'll be ready to start maki
### Sample

```php
require 'vendor/autoload.php';

use Google\Cloud\Talent\V4beta1\Company;
use Google\Cloud\Talent\V4beta1\CompanyServiceClient;

$client = new CompanyServiceClient();
$response = $client->createCompany(
CompanyServiceClient::projectName('spaceman-spiff2'),
new Company([
'display_name' => 'Google, LLC',
'external_id' => 1,
'headquarters_address' => '1600 Amphitheatre Parkway, Mountain View, CA'
])
);
```

### Version
Expand Down

0 comments on commit 0d924de

Please sign in to comment.