Skip to content

Commit f2daa4a

Browse files
committed
Release 46.1.0.
1 parent c1f7b3a commit f2daa4a

File tree

122 files changed

+4338
-1818
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+4338
-1818
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
### 46.1.0
2+
3+
##### AdWords
4+
5+
* Updated the Laravel sample application to use Laravel framework v5.8.
6+
7+
##### Ad Manager
8+
9+
* No changes.
10+
11+
##### Common
12+
13+
* No changes.
14+
115
### 46.0.0
216

317
##### AdWords
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2

examples/AdWords/LaravelSampleApp/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
APP_ENV=local
22
APP_DEBUG=true
3-
APP_KEY=base64:vSkS+DDW9H0hU8tKWBzMzhQb21RWK3cXAkmahMKLmTw=
3+
APP_KEY=base64:zGW53qsCuyyDlJc5B8u17n2z4qqYZZLeZMRjcDiNWPw=
44
APP_URL=http://localhost
55

66
DB_CONNECTION=mysql
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
* text=auto
22
*.css linguist-vendored
33
*.scss linguist-vendored
4+
*.js linguist-vendored
Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
/vendor
21
/node_modules
2+
/public/hot
33
/public/storage
4-
Homestead.yaml
4+
/storage/*.key
5+
/vendor
6+
.env.backup
7+
.phpunit.result.cache
58
Homestead.json
9+
Homestead.yaml
10+
npm-debug.log
11+
yarn-error.log
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
php:
2+
preset: laravel
3+
disabled:
4+
- unused_use
5+
finder:
6+
not-name:
7+
- index.php
8+
- server.php
9+
js:
10+
finder:
11+
not-name:
12+
- webpack.mix.js
13+
css: true

examples/AdWords/LaravelSampleApp/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ to the location of this sample application.
2828
1. Copy the sample [`adsapi_php.ini`](https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/adsapi_php.ini)
2929
to the same location as this `README.md` file. Then, fill out the required
3030
properties as described in the file.
31+
1. Run `php artisan serve`. Your sample app will be ready.
3132
1. You can now test the sample app by using the web browser at the URL you've
3233
set in your virtual machine or web server, e.g., `http://localhost`.
3334

examples/AdWords/LaravelSampleApp/app/Console/Commands/Inspire.php

Lines changed: 0 additions & 33 deletions
This file was deleted.

examples/AdWords/LaravelSampleApp/app/Console/Kernel.php

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
1313
* @var array
1414
*/
1515
protected $commands = [
16-
// Commands\Inspire::class,
16+
//
1717
];
1818

1919
/**
@@ -27,4 +27,16 @@ protected function schedule(Schedule $schedule)
2727
// $schedule->command('inspire')
2828
// ->hourly();
2929
}
30+
31+
/**
32+
* Register the commands for the application.
33+
*
34+
* @return void
35+
*/
36+
protected function commands()
37+
{
38+
$this->load(__DIR__.'/Commands');
39+
40+
require base_path('routes/console.php');
41+
}
3042
}

examples/AdWords/LaravelSampleApp/app/Events/Event.php

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)