Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add phpdoc #31196

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions htdocs/comm/mailing/class/advtargetemailing.class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php
/* Advance Targeting Emailing for mass emailing module
* Copyright (C) 2013 Florian Henry <[email protected]>
* Copyright (C) 2013 Florian Henry <[email protected]>
* Copyright (C) 2024 Frédéric France <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,7 +18,7 @@
*/

/**
* \file comm/mailing/class/advtargetemailing.class.php
* \file htdocs/comm/mailing/class/advtargetemailing.class.php
* \ingroup mailing
* \brief This file is an example CRUD class file (Create/Read/Update/Delete)
*/
Expand Down Expand Up @@ -92,7 +93,15 @@ class AdvanceTargetingMailing extends CommonObject
* @var array type status comm prospect
*/
public $type_statuscommprospect = array();

/**
* @var int[]
*/
public $thirdparty_lines;

/**
* @var int[]
*/
public $contact_lines;


Expand Down