summaryrefslogtreecommitdiff
path: root/php/src/php5
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2019-01-19 13:12:29 +0100
committerJose <jose@zeroc.com>2019-01-19 13:12:29 +0100
commit7a7d495fb0c5a63e404eb62a0461bbafb06d6175 (patch)
treee0877720ce67950b8b0eaaef410631013c3cf2a4 /php/src/php5
parentRemove anonymous cipher usage in IceSSL/configuration (diff)
downloadice-7a7d495fb0c5a63e404eb62a0461bbafb06d6175.tar.bz2
ice-7a7d495fb0c5a63e404eb62a0461bbafb06d6175.tar.xz
ice-7a7d495fb0c5a63e404eb62a0461bbafb06d6175.zip
Copyright header simplication
Diffstat (limited to 'php/src/php5')
-rw-r--r--php/src/php5/Communicator.cpp4
-rw-r--r--php/src/php5/Communicator.h4
-rw-r--r--php/src/php5/Config.h4
-rw-r--r--php/src/php5/Connection.cpp4
-rw-r--r--php/src/php5/Connection.h4
-rw-r--r--php/src/php5/Endpoint.cpp4
-rw-r--r--php/src/php5/Endpoint.h4
-rw-r--r--php/src/php5/Init.cpp4
-rw-r--r--php/src/php5/Logger.cpp4
-rw-r--r--php/src/php5/Logger.h4
-rw-r--r--php/src/php5/Makefile.mk4
-rw-r--r--php/src/php5/Operation.cpp4
-rw-r--r--php/src/php5/Operation.h4
-rw-r--r--php/src/php5/Properties.cpp4
-rw-r--r--php/src/php5/Properties.h4
-rw-r--r--php/src/php5/Proxy.cpp4
-rw-r--r--php/src/php5/Proxy.h4
-rw-r--r--php/src/php5/Types.cpp4
-rw-r--r--php/src/php5/Types.h4
-rw-r--r--php/src/php5/Util.cpp4
-rw-r--r--php/src/php5/Util.h4
21 files changed, 21 insertions, 63 deletions
diff --git a/php/src/php5/Communicator.cpp b/php/src/php5/Communicator.cpp
index bd93ca2bb2a..a7d185e9ccc 100644
--- a/php/src/php5/Communicator.cpp
+++ b/php/src/php5/Communicator.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Communicator.h>
#include <Logger.h>
diff --git a/php/src/php5/Communicator.h b/php/src/php5/Communicator.h
index 4f15c07e8e3..4d26352659b 100644
--- a/php/src/php5/Communicator.h
+++ b/php/src/php5/Communicator.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_COMMUNICATOR_H
#define ICEPHP_COMMUNICATOR_H
diff --git a/php/src/php5/Config.h b/php/src/php5/Config.h
index ac0f874d4b3..302b642c160 100644
--- a/php/src/php5/Config.h
+++ b/php/src/php5/Config.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICE_PHP_CONFIG_H
#define ICE_PHP_CONFIG_H
diff --git a/php/src/php5/Connection.cpp b/php/src/php5/Connection.cpp
index 22705b57c3a..57353c80a54 100644
--- a/php/src/php5/Connection.cpp
+++ b/php/src/php5/Connection.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Connection.h>
#include <Endpoint.h>
diff --git a/php/src/php5/Connection.h b/php/src/php5/Connection.h
index 2e5fabfa637..f0abc1f110d 100644
--- a/php/src/php5/Connection.h
+++ b/php/src/php5/Connection.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_CONNECTION_H
#define ICEPHP_CONNECTION_H
diff --git a/php/src/php5/Endpoint.cpp b/php/src/php5/Endpoint.cpp
index 1c7890b1091..a8794d87831 100644
--- a/php/src/php5/Endpoint.cpp
+++ b/php/src/php5/Endpoint.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Endpoint.h>
#include <Util.h>
diff --git a/php/src/php5/Endpoint.h b/php/src/php5/Endpoint.h
index 945c8e0cdd2..8f8d15c6c2d 100644
--- a/php/src/php5/Endpoint.h
+++ b/php/src/php5/Endpoint.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_ENDPOINT_H
#define ICEPHP_ENDPOINT_H
diff --git a/php/src/php5/Init.cpp b/php/src/php5/Init.cpp
index f3bf4e7ed5f..7e6bc586b4f 100644
--- a/php/src/php5/Init.cpp
+++ b/php/src/php5/Init.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Communicator.h>
#include <Connection.h>
diff --git a/php/src/php5/Logger.cpp b/php/src/php5/Logger.cpp
index f333d08e776..81aaa5eb862 100644
--- a/php/src/php5/Logger.cpp
+++ b/php/src/php5/Logger.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Logger.h>
#include <Util.h>
diff --git a/php/src/php5/Logger.h b/php/src/php5/Logger.h
index f45f191d787..3d8e275284f 100644
--- a/php/src/php5/Logger.h
+++ b/php/src/php5/Logger.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_LOGGER_H
#define ICEPHP_LOGGER_H
diff --git a/php/src/php5/Makefile.mk b/php/src/php5/Makefile.mk
index 66490cd174a..2585254dafa 100644
--- a/php/src/php5/Makefile.mk
+++ b/php/src/php5/Makefile.mk
@@ -1,8 +1,6 @@
-# **********************************************************************
#
-# Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+# Copyright (c) ZeroC, Inc. All rights reserved.
#
-# **********************************************************************
$(project)_libraries := IcePHP
diff --git a/php/src/php5/Operation.cpp b/php/src/php5/Operation.cpp
index 10cf28c243e..8a20338210f 100644
--- a/php/src/php5/Operation.cpp
+++ b/php/src/php5/Operation.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Operation.h>
#include <Communicator.h>
diff --git a/php/src/php5/Operation.h b/php/src/php5/Operation.h
index da4f4b28f1c..06acd9c63f0 100644
--- a/php/src/php5/Operation.h
+++ b/php/src/php5/Operation.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_OPERATION_H
#define ICEPHP_OPERATION_H
diff --git a/php/src/php5/Properties.cpp b/php/src/php5/Properties.cpp
index f9d6d39bdc1..8ce32bd4b9d 100644
--- a/php/src/php5/Properties.cpp
+++ b/php/src/php5/Properties.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Properties.h>
#include <Util.h>
diff --git a/php/src/php5/Properties.h b/php/src/php5/Properties.h
index b8c40498ae0..a16349b508e 100644
--- a/php/src/php5/Properties.h
+++ b/php/src/php5/Properties.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_PROPERTIES_H
#define ICEPHP_PROPERTIES_H
diff --git a/php/src/php5/Proxy.cpp b/php/src/php5/Proxy.cpp
index 17844c385e3..ccdd4a1873a 100644
--- a/php/src/php5/Proxy.cpp
+++ b/php/src/php5/Proxy.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Proxy.h>
#include <Connection.h>
diff --git a/php/src/php5/Proxy.h b/php/src/php5/Proxy.h
index e8f77c844e3..b76abf92791 100644
--- a/php/src/php5/Proxy.h
+++ b/php/src/php5/Proxy.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_PROXY_H
#define ICEPHP_PROXY_H
diff --git a/php/src/php5/Types.cpp b/php/src/php5/Types.cpp
index ed173fe595a..79fb6d2ca5b 100644
--- a/php/src/php5/Types.cpp
+++ b/php/src/php5/Types.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Types.h>
#include <Proxy.h>
diff --git a/php/src/php5/Types.h b/php/src/php5/Types.h
index 3ff46228431..1ffb6ccd787 100644
--- a/php/src/php5/Types.h
+++ b/php/src/php5/Types.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_TYPES_H
#define ICEPHP_TYPES_H
diff --git a/php/src/php5/Util.cpp b/php/src/php5/Util.cpp
index 1eb6ac005b7..908f0ac858c 100644
--- a/php/src/php5/Util.cpp
+++ b/php/src/php5/Util.cpp
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#include <Util.h>
#include <Ice/UUID.h>
diff --git a/php/src/php5/Util.h b/php/src/php5/Util.h
index 8d8451d1741..40bd6416068 100644
--- a/php/src/php5/Util.h
+++ b/php/src/php5/Util.h
@@ -1,8 +1,6 @@
-// **********************************************************************
//
-// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
+// Copyright (c) ZeroC, Inc. All rights reserved.
//
-// **********************************************************************
#ifndef ICEPHP_UTIL_H
#define ICEPHP_UTIL_H