Skip to content

Commit 7274094

Browse files
committed
Updated comments.
1 parent 9ffb0db commit 7274094

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

src/Gwt/Processor/CsvWriter.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
* @link https://github.com/eyecatchup/php-webmaster-tools-downloads/
2626
*/
2727

28+
/**
29+
* Class for writing downloaded CSV files from GWT
30+
*/
2831
class Gwt_Processor_CsvWriter
2932
extends Gwt_Processor_ProcessorAbstract
3033
{

src/Gwt/Processor/ProcessorAbstract.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
* limitations under the License.
2121
*
2222
* @author Anton Kolenkov <dorantor@gmail.com>
23-
* @link https://code.google.com/p/php-webmaster-tools-downloads/
2423
* @link https://github.com/dorantor/php-webmaster-tools-downloads/
2524
*/
2625

src/Gwt/Processor/ProcessorInterface.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
<?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+
*/
225

26+
/**
27+
* Interface for processors
28+
*/
329
interface Gwt_Processor_ProcessorInterface
430
{
531
/**

0 commit comments

Comments
 (0)