Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorAnthon Pang <apang@softwaredevelopment.ca>2015-07-13 03:12:49 +0300
committerAnthon Pang <apang@softwaredevelopment.ca>2015-07-13 03:13:02 +0300
commitb95837534c6fc4c9dd63eef2c2e9d8bb343ca23e (patch)
tree34c185c4e4de45eea722e6802e384133c1dd3eca /core
parent01e43b4b78c718784d04962af5192ed6dca53535 (diff)
Missing @license docblocks (according to fossology)
Diffstat (limited to 'core')
-rw-r--r--core/Archiver/Request.php8
-rw-r--r--core/Exception/ErrorException.php8
-rw-r--r--core/Intl/Locale.php8
-rw-r--r--core/ReportRenderer/Csv.php10
-rw-r--r--core/ReportRenderer/Html.php2
-rw-r--r--core/ReportRenderer/Pdf.php2
-rw-r--r--core/Settings/StorageInterface.php9
-rw-r--r--core/Tracker/Visit/Factory.php1
-rw-r--r--core/Tracker/Visit/ReferrerSpamFilter.php8
-rw-r--r--core/bootstrap.php5
10 files changed, 50 insertions, 11 deletions
diff --git a/core/Archiver/Request.php b/core/Archiver/Request.php
index 3c0a55e2f9..e1d1909dfd 100644
--- a/core/Archiver/Request.php
+++ b/core/Archiver/Request.php
@@ -1,5 +1,11 @@
<?php
-
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
namespace Piwik\Archiver;
class Request
diff --git a/core/Exception/ErrorException.php b/core/Exception/ErrorException.php
index 1673d8def8..2de42f2898 100644
--- a/core/Exception/ErrorException.php
+++ b/core/Exception/ErrorException.php
@@ -1,5 +1,11 @@
<?php
-
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
namespace Piwik\Exception;
/**
diff --git a/core/Intl/Locale.php b/core/Intl/Locale.php
index 7c18b727c5..5b284d5a97 100644
--- a/core/Intl/Locale.php
+++ b/core/Intl/Locale.php
@@ -1,5 +1,11 @@
<?php
-
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
namespace Piwik\Intl;
class Locale
diff --git a/core/ReportRenderer/Csv.php b/core/ReportRenderer/Csv.php
index 94eca5172a..b76096db44 100644
--- a/core/ReportRenderer/Csv.php
+++ b/core/ReportRenderer/Csv.php
@@ -1,4 +1,11 @@
<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
namespace Piwik\ReportRenderer;
use Piwik\DataTable\DataTableInterface;
@@ -6,6 +13,9 @@ use Piwik\DataTable\Renderer\Csv as CsvDataTableRenderer;
use Piwik\Piwik;
use Piwik\ReportRenderer;
+/**
+ * CSV report renderer
+ */
class Csv extends ReportRenderer
{
/**
diff --git a/core/ReportRenderer/Html.php b/core/ReportRenderer/Html.php
index 3ff0fd0d40..9915f255e9 100644
--- a/core/ReportRenderer/Html.php
+++ b/core/ReportRenderer/Html.php
@@ -15,7 +15,7 @@ use Piwik\SettingsPiwik;
use Piwik\View;
/**
- *
+ * HTML report renderer
*/
class Html extends ReportRenderer
{
diff --git a/core/ReportRenderer/Pdf.php b/core/ReportRenderer/Pdf.php
index 5ce45f3550..0c4fb2f6a3 100644
--- a/core/ReportRenderer/Pdf.php
+++ b/core/ReportRenderer/Pdf.php
@@ -21,7 +21,7 @@ use Piwik\TCPDF;
require_once PIWIK_INCLUDE_PATH . '/plugins/ScheduledReports/config/tcpdf_config.php';
/**
- *
+ * PDF report renderer
*/
class Pdf extends ReportRenderer
{
diff --git a/core/Settings/StorageInterface.php b/core/Settings/StorageInterface.php
index 7ffcac0d60..6a4a76c5ac 100644
--- a/core/Settings/StorageInterface.php
+++ b/core/Settings/StorageInterface.php
@@ -1,9 +1,10 @@
<?php
/**
- * Created by PhpStorm.
- * User: thomassteur
- * Date: 25.10.13
- * Time: 13:33
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
*/
namespace Piwik\Settings;
diff --git a/core/Tracker/Visit/Factory.php b/core/Tracker/Visit/Factory.php
index 778832925c..9dbb863215 100644
--- a/core/Tracker/Visit/Factory.php
+++ b/core/Tracker/Visit/Factory.php
@@ -6,7 +6,6 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
-
namespace Piwik\Tracker\Visit;
use Piwik\Piwik;
diff --git a/core/Tracker/Visit/ReferrerSpamFilter.php b/core/Tracker/Visit/ReferrerSpamFilter.php
index 534f713395..3d49362444 100644
--- a/core/Tracker/Visit/ReferrerSpamFilter.php
+++ b/core/Tracker/Visit/ReferrerSpamFilter.php
@@ -1,5 +1,11 @@
<?php
-
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
namespace Piwik\Tracker\Visit;
use Piwik\Cache;
diff --git a/core/bootstrap.php b/core/bootstrap.php
index 44103a54b9..68ac4873e8 100644
--- a/core/bootstrap.php
+++ b/core/bootstrap.php
@@ -1,5 +1,10 @@
<?php
/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
* Bootstraps the Piwik application.
*
* This file cannot be a class because it needs to be compatible with PHP 4.