Skip to content

Commit a8734bb

Browse files
committed
Merge pull request #4 from atomx/quality
Added RequestAttributeTargeting to Profile
2 parents c19f62e + 9f98f47 commit a8734bb

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Atomx/Resources/Domain.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,4 @@ public function setAttributes($att = [])
2323
if(!isset($att)) $att = [];
2424
$this->attributes = $att;
2525
}
26-
27-
28-
2926
}

Atomx/Resources/Profile.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,10 @@ public function setDomainTargeting($action, $domains)
6161
$this->domains_filter = $domains;
6262
$this->domains_filter_action = strtoupper($action);
6363
}
64+
65+
public function setRequestAttributeTargeting($action, $attributes)
66+
{
67+
$this->request_attributes_filter = $attributes;
68+
$this->request_attributes_filter_action = strtoupper($action);
69+
}
6470
}

0 commit comments

Comments
 (0)