File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 25
25
* @link https://github.com/eyecatchup/php-webmaster-tools-downloads/
26
26
*/
27
27
28
+ /**
29
+ * Class for writing downloaded CSV files from GWT
30
+ */
28
31
class Gwt_Processor_CsvWriter
29
32
extends Gwt_Processor_ProcessorAbstract
30
33
{
Original file line number Diff line number Diff line change 20
20
* limitations under the License.
21
21
*
22
22
* @author Anton Kolenkov <dorantor@gmail.com>
23
- * @link https://code.google.com/p/php-webmaster-tools-downloads/
24
23
* @link https://github.com/dorantor/php-webmaster-tools-downloads/
25
24
*/
26
25
Original file line number Diff line number Diff line change 1
1
<?php
2
+ /**
3
+ * PHP class for downloading CSV files from Google Webmaster Tools.
4
+ *
5
+ * This class does NOT require the Zend gdata package be installed
6
+ * in order to run.
7
+ *
8
+ * Copyright 2015 Anton Kolenkov. All Rights Reserved.
9
+ *
10
+ * Licensed under the Apache License, Version 2.0 (the "License");
11
+ * you may not use this file except in compliance with the License.
12
+ * You may obtain a copy of the License at
13
+ *
14
+ * http://www.apache.org/licenses/LICENSE-2.0
15
+ *
16
+ * Unless required by applicable law or agreed to in writing, software
17
+ * distributed under the License is distributed on an "AS IS" BASIS,
18
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ * See the License for the specific language governing permissions and
20
+ * limitations under the License.
21
+ *
22
+ * @author Anton Kolenkov <dorantor@gmail.com>
23
+ * @link https://github.com/dorantor/php-webmaster-tools-downloads/
24
+ */
2
25
26
+ /**
27
+ * Interface for processors
28
+ */
3
29
interface Gwt_Processor_ProcessorInterface
4
30
{
5
31
/**
You can’t perform that action at this time.
0 commit comments