We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd7176a commit 6ec472eCopy full SHA for 6ec472e
1 file changed
src/Gradient.php
@@ -846,7 +846,7 @@ public function getCropMark(
846
* (Check the "Entries in a Graphics State Parameter Dictionary" on PDF 32000-1:2008).
847
*
848
* @param bool $stroking If true apply overprint for stroking operations.
849
- * @param bool $nonstroking If true apply overprint for painting operations other than stroking.
+ * @param bool|null $nonstroking If true apply overprint for painting operations other than stroking.
850
* @param int $mode Overprint mode:
851
* 0 = each source
852
* colour
@@ -873,7 +873,7 @@ public function getCropMark(
873
*/
874
public function getOverprint(
875
bool $stroking = true,
876
- bool $nonstroking = null,
+ ?bool $nonstroking = null,
877
int $mode = 0
878
): string {
879
if ($nonstroking === null) {
0 commit comments