Skip to content
This repository has been archived by the owner on Aug 8, 2019. It is now read-only.

Commit

Permalink
Comments for classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrydn committed Apr 1, 2015
1 parent 733cbb7 commit c37cd2c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/base/abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@
* @author: KentProjects <[email protected]>
* @license: Copyright KentProjects
* @link: http://kentprojects.com
*
* Class KentProjects_TestBase
* This is a base test class for all KentProjects tests.
*/
abstract class KentProjects_TestBase extends PHPUnit_Framework_TestCase
{
/**
* Asserts that a model is equal to another model.
*
* @param Model $expected
* @param Model $actual
* @param string $message
Expand Down
3 changes: 3 additions & 0 deletions tests/base/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* @author: KentProjects <[email protected]>
* @license: Copyright KentProjects
* @link: http://kentprojects.com
*
* Class KentProjects_Controller_TestBase
* This is a base test class for all KentProjects tests on controllers.
*/
abstract class KentProjects_Controller_TestBase extends KentProjects_TestBase
{
Expand Down
3 changes: 3 additions & 0 deletions tests/base/model.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* @author: KentProjects <[email protected]>
* @license: Copyright KentProjects
* @link: http://kentprojects.com
*
* Class KentProjects_Model_TestBase
* This is a base test class for all KentProjects tests on models.
*/
abstract class KentProjects_Model_TestBase extends KentProjects_TestBase
{
Expand Down
3 changes: 3 additions & 0 deletions vendor/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
require_once __DIR__ . "/phpmailer/class.pop3.php";
require_once __DIR__ . "/phpmailer/class.smtp.php";

/**
* Class Mail
*/
class Mail
{
/**
Expand Down
2 changes: 2 additions & 0 deletions vendor/postmark.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* @author: KentProjects <[email protected]>
* @license: Copyright KentProjects
* @link: http://kentprojects.com
*
* Class Postmark
*/
class Postmark extends Mail
{
Expand Down

0 comments on commit c37cd2c

Please sign in to comment.