aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/BusinessAdmin.class.php2
-rw-r--r--classes/correspondence.class.php4
-rw-r--r--classes/offer.class.php2
3 files changed, 7 insertions, 1 deletions
diff --git a/classes/BusinessAdmin.class.php b/classes/BusinessAdmin.class.php
index ce5525b..20b95c4 100644
--- a/classes/BusinessAdmin.class.php
+++ b/classes/BusinessAdmin.class.php
@@ -36,7 +36,7 @@ class BusinessAdmin {
*
* @param PDO $pdo The PDO class for database connection
*
- * @throws PDOException Is something went wrong with the database
+ * @throws PDOException If something went wrong with the database
*
* @return int[] The ids
*/
diff --git a/classes/correspondence.class.php b/classes/correspondence.class.php
index 979f4ee..6e17528 100644
--- a/classes/correspondence.class.php
+++ b/classes/correspondence.class.php
@@ -27,6 +27,10 @@ require_once('fpdf.php');
* An extension of FPDF to generate personalized correspondence PDFs
*/
class correspondence extends FPDF {
+ /**
+ * @var $contact Holds the contact this correspondence will be sent to
+ * @var $language Holds the language this correspondence should be sent in
+ */
var $contact, $language;
/**
diff --git a/classes/offer.class.php b/classes/offer.class.php
index 9e0a956..6dedd09 100644
--- a/classes/offer.class.php
+++ b/classes/offer.class.php
@@ -45,6 +45,8 @@ class offer {
/**
* Create a new instance
*
+ * Blah
+ *
* @param PDO $pdo The PDO class, to access the database
* @param int $id The id of the offer to fetch
*