Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Commit 4cddd25

Browse files
Remove Deprecated
1 parent 6cd61e5 commit 4cddd25

File tree

1 file changed

+0
-165
lines changed

1 file changed

+0
-165
lines changed

libs/PHPCrawler.php

-165
Original file line numberDiff line numberDiff line change
@@ -992,19 +992,6 @@ public function getProcessReport(): PHPCrawlerProcessReport
992992
return $Report;
993993
}
994994

995-
/**
996-
* Retruns an array with summarizing report-information after the crawling-process has finished
997-
*
998-
* For detailed information on the conatining array-keys see PHPCrawlerProcessReport-class.
999-
*
1000-
* @deprecated Please use getProcessReport() instead.
1001-
* @section 11 Deprecated
1002-
*/
1003-
public function getReport(): array
1004-
{
1005-
return $this->getProcessReport()->toArray();
1006-
}
1007-
1008995
/**
1009996
* Overridable method that will be called after the header of a document was received and BEFORE the content
1010997
* will be received.
@@ -1324,19 +1311,6 @@ public function addContentTypeReceiveRule($regex): bool
13241311
return $this->PageRequest->addReceiveContentType($regex);
13251312
}
13261313

1327-
/**
1328-
* Alias for addContentTypeReceiveRule().
1329-
*
1330-
* @section 11 Deprecated
1331-
* @param $regex
1332-
* @return bool
1333-
* @deprecated
1334-
*/
1335-
public function addReceiveContentType($regex): bool
1336-
{
1337-
return $this->addContentTypeReceiveRule($regex);
1338-
}
1339-
13401314
/**
13411315
* Adds a rule to the list of rules that decide which URLs found on a page should be followd explicitly.
13421316
*
@@ -1386,32 +1360,6 @@ public function addURLFilterRule($regex): bool
13861360
return $this->UrlFilter->addURLFilterRule($regex);
13871361
}
13881362

1389-
/**
1390-
* Alias for addURLFollowRule().
1391-
*
1392-
* @section 11 Deprecated
1393-
* @param $regex
1394-
* @return bool
1395-
* @deprecated
1396-
*/
1397-
public function addFollowMatch($regex): bool
1398-
{
1399-
return $this->addURLFollowRule($regex);
1400-
}
1401-
1402-
/**
1403-
* Alias for addURLFilterRule().
1404-
*
1405-
* @section 11 Deprecated
1406-
* @param $regex
1407-
* @return bool
1408-
* @deprecated
1409-
*/
1410-
public function addNonFollowMatch($regex): bool
1411-
{
1412-
return $this->addURLFilterRule($regex);
1413-
}
1414-
14151363
/**
14161364
* Adds a rule to the list of rules that decides what types of content should be streamed diretly to a temporary file.
14171365
*
@@ -1445,19 +1393,6 @@ public function addStreamToFileContentType($regex): bool
14451393
return $this->PageRequest->addStreamToFileContentType($regex);
14461394
}
14471395

1448-
/**
1449-
* Has no function anymore.
1450-
*
1451-
* Please use setWorkingDirectory()
1452-
*
1453-
* @param $tmp_file
1454-
* @deprecated This method has no function anymore since v 0.8.
1455-
* @section 11 Deprecated
1456-
*/
1457-
public function setTmpFile($tmp_file): void
1458-
{
1459-
}
1460-
14611396
/**
14621397
* Defines whether the crawler should parse and obey robots.txt-files.
14631398
*
@@ -1496,35 +1431,6 @@ public function obeyRobotsTxt($mode, $robots_txt_uri = null): bool
14961431
return true;
14971432
}
14981433

1499-
/**
1500-
* Alias for addStreamToFileContentType().
1501-
*
1502-
* @param $regex
1503-
* @return bool
1504-
* @deprecated
1505-
* @section 11 Deprecated
1506-
*/
1507-
public function addReceiveToTmpFileMatch($regex): bool
1508-
{
1509-
return $this->addStreamToFileContentType($regex);
1510-
}
1511-
1512-
/**
1513-
* Has no function anymore!
1514-
*
1515-
* This method was redundant, please use addStreamToFileContentType().
1516-
* It just still exists because of compatibility-reasons.
1517-
*
1518-
* @param $regex
1519-
* @return bool
1520-
* @deprecated This method has no function anymore since v 0.8.
1521-
* @section 11 Deprecated
1522-
*/
1523-
public function addReceiveToMemoryMatch($regex): bool
1524-
{
1525-
return true;
1526-
}
1527-
15281434
/**
15291435
* Sets a limit to the total number of requests the crawler should execute.
15301436
*
@@ -1552,20 +1458,6 @@ public function setRequestLimit($limit, $only_count_received_documents = false):
15521458
return true;
15531459
}
15541460

1555-
/**
1556-
* Alias for setRequestLimit() method.
1557-
*
1558-
* @section 11 Deprecated
1559-
* @param $limit
1560-
* @param bool $only_count_received_documents
1561-
* @return bool
1562-
* @deprecated Please use setRequestLimit() method!
1563-
*/
1564-
public function setPageLimit($limit, $only_count_received_documents = false): bool
1565-
{
1566-
return $this->setRequestLimit($limit, $only_count_received_documents);
1567-
}
1568-
15691461
/**
15701462
* Sets the content-size-limit for content the crawler should receive from documents.
15711463
*
@@ -1629,19 +1521,6 @@ public function enableCookieHandling($mode): bool
16291521
return true;
16301522
}
16311523

1632-
/**
1633-
* Alias for enableCookieHandling()
1634-
*
1635-
* @section 11 Deprecated
1636-
* @param $mode
1637-
* @return bool
1638-
* @deprecated Please use enableCookieHandling()
1639-
*/
1640-
public function setCookieHandling($mode): bool
1641-
{
1642-
return $this->enableCookieHandling($mode);
1643-
}
1644-
16451524
/**
16461525
* Enables or disables agressive link-searching.
16471526
*
@@ -1664,19 +1543,6 @@ public function enableAggressiveLinkSearch($mode): bool
16641543
return $this->PageRequest->enableAggressiveLinkSearch($mode);
16651544
}
16661545

1667-
/**
1668-
* Alias for enableAggressiveLinkSearch()
1669-
*
1670-
* @section 11 Deprecated
1671-
* @param $mode
1672-
* @return bool
1673-
* @deprecated Please use enableAggressiveLinkSearch()
1674-
*/
1675-
public function setAggressiveLinkExtraction($mode): bool
1676-
{
1677-
return $this->enableAggressiveLinkSearch($mode);
1678-
}
1679-
16801546
/**
16811547
* Sets the list of html-tags the crawler should search for links in.
16821548
*
@@ -1698,24 +1564,6 @@ public function setLinkExtractionTags($tag_array): bool
16981564
return $this->PageRequest->setLinkExtractionTags($tag_array);
16991565
}
17001566

1701-
/**
1702-
* Sets the list of html-tags from which links should be extracted from.
1703-
*
1704-
* This method was named wrong in previous versions of phpcrawl.
1705-
* It does not ADD tags, it SETS the tags from which links should be extracted from.
1706-
*
1707-
* Example
1708-
* <code>$crawler->addLinkExtractionTags("href", "src");</code>
1709-
*
1710-
* @section 11 Deprecated
1711-
* @deprecated Please use setLinkExtractionTags()
1712-
*/
1713-
public function addLinkExtractionTags(): bool
1714-
{
1715-
$tags = func_get_args();
1716-
return $this->setLinkExtractionTags($tags);
1717-
}
1718-
17191567
/**
17201568
* Adds a basic-authentication (username and password) to the list of basic authentications that will be send with requests.
17211569
*
@@ -1752,19 +1600,6 @@ public function setUserAgentString($user_agent): bool
17521600
return true;
17531601
}
17541602

1755-
/**
1756-
* Has no function anymore.
1757-
*
1758-
* Thes method has no function anymore, just still exists because of compatibility-reasons.
1759-
*
1760-
* @section 11 Deprecated
1761-
* @param $mode
1762-
* @deprecated
1763-
*/
1764-
public function disableExtendedLinkInfo($mode): void
1765-
{
1766-
}
1767-
17681603
/**
17691604
* Sets the working-directory the crawler should use for storing temporary data.
17701605
*

0 commit comments

Comments
 (0)