summaryrefslogtreecommitdiff
path: root/demos/northwind-db
diff options
context:
space:
mode:
authorctrlaltca <>2012-07-12 12:16:21 +0000
committerctrlaltca <>2012-07-12 12:16:21 +0000
commit40ad9f8c7964355f56f73fa0c4c5db40750bc023 (patch)
treea4c472da264f6ce05025abcda38aa504a0f4fc83 /demos/northwind-db
parent712729aa2f9b5e491e78f29b8f779f8b40a67ba4 (diff)
more removal of ?> from php files
Diffstat (limited to 'demos/northwind-db')
-rw-r--r--demos/northwind-db/index.php1
-rw-r--r--demos/northwind-db/protected/database/Category.php1
-rw-r--r--demos/northwind-db/protected/database/Customer.php1
-rw-r--r--demos/northwind-db/protected/database/Employee.php1
-rw-r--r--demos/northwind-db/protected/database/Order.php1
-rw-r--r--demos/northwind-db/protected/database/OrderDetail.php1
-rw-r--r--demos/northwind-db/protected/database/Product.php1
-rw-r--r--demos/northwind-db/protected/database/Region.php1
-rw-r--r--demos/northwind-db/protected/database/Shipper.php1
-rw-r--r--demos/northwind-db/protected/database/Supplier.php1
-rw-r--r--demos/northwind-db/protected/database/Territory.php1
-rw-r--r--demos/northwind-db/protected/pages/NorthwindCrud.php1
12 files changed, 0 insertions, 12 deletions
diff --git a/demos/northwind-db/index.php b/demos/northwind-db/index.php
index ef243159..08b99316 100644
--- a/demos/northwind-db/index.php
+++ b/demos/northwind-db/index.php
@@ -25,4 +25,3 @@ require_once($frameworkPath);
$application=new TApplication;
$application->run();
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Category.php b/demos/northwind-db/protected/database/Category.php
index d708ee96..6a0e503a 100644
--- a/demos/northwind-db/protected/database/Category.php
+++ b/demos/northwind-db/protected/database/Category.php
@@ -23,4 +23,3 @@ class Category extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Customer.php b/demos/northwind-db/protected/database/Customer.php
index 464b384d..b812a8b2 100644
--- a/demos/northwind-db/protected/database/Customer.php
+++ b/demos/northwind-db/protected/database/Customer.php
@@ -30,4 +30,3 @@ class Customer extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Employee.php b/demos/northwind-db/protected/database/Employee.php
index 573b887d..441f289b 100644
--- a/demos/northwind-db/protected/database/Employee.php
+++ b/demos/northwind-db/protected/database/Employee.php
@@ -45,4 +45,3 @@ class Employee extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Order.php b/demos/northwind-db/protected/database/Order.php
index 2a425102..655f6d70 100644
--- a/demos/northwind-db/protected/database/Order.php
+++ b/demos/northwind-db/protected/database/Order.php
@@ -39,4 +39,3 @@ class Order extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/OrderDetail.php b/demos/northwind-db/protected/database/OrderDetail.php
index 47f77351..c5e2f72b 100644
--- a/demos/northwind-db/protected/database/OrderDetail.php
+++ b/demos/northwind-db/protected/database/OrderDetail.php
@@ -24,4 +24,3 @@ class OrderDetail extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Product.php b/demos/northwind-db/protected/database/Product.php
index 088fbbd2..71e6f6e6 100644
--- a/demos/northwind-db/protected/database/Product.php
+++ b/demos/northwind-db/protected/database/Product.php
@@ -33,4 +33,3 @@ class Product extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Region.php b/demos/northwind-db/protected/database/Region.php
index 6473e682..85116817 100644
--- a/demos/northwind-db/protected/database/Region.php
+++ b/demos/northwind-db/protected/database/Region.php
@@ -22,4 +22,3 @@ class Region extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Shipper.php b/demos/northwind-db/protected/database/Shipper.php
index f90548ea..4ff6f6e1 100644
--- a/demos/northwind-db/protected/database/Shipper.php
+++ b/demos/northwind-db/protected/database/Shipper.php
@@ -22,4 +22,3 @@ class Shipper extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Supplier.php b/demos/northwind-db/protected/database/Supplier.php
index bc3b44e0..4c45d381 100644
--- a/demos/northwind-db/protected/database/Supplier.php
+++ b/demos/northwind-db/protected/database/Supplier.php
@@ -31,4 +31,3 @@ class Supplier extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/database/Territory.php b/demos/northwind-db/protected/database/Territory.php
index 96006bb1..dcf790a3 100644
--- a/demos/northwind-db/protected/database/Territory.php
+++ b/demos/northwind-db/protected/database/Territory.php
@@ -57,4 +57,3 @@ class Territory extends TActiveRecord
return parent::finder($className);
}
}
-?> \ No newline at end of file
diff --git a/demos/northwind-db/protected/pages/NorthwindCrud.php b/demos/northwind-db/protected/pages/NorthwindCrud.php
index 72297ac8..2419f489 100644
--- a/demos/northwind-db/protected/pages/NorthwindCrud.php
+++ b/demos/northwind-db/protected/pages/NorthwindCrud.php
@@ -25,4 +25,3 @@ class NorthwindCrud extends TPage
}
}
-?> \ No newline at end of file