-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autoupdated protocol.json & generated files
- Loading branch information
Jakub Kulhan
committed
Aug 30, 2024
1 parent
af3eff9
commit 71ddee1
Showing
5 changed files
with
97 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
gen-src/ChromeDevtoolsProtocol/Model/Page/FrameSubtreeWillBeDetachedEvent.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
namespace ChromeDevtoolsProtocol\Model\Page; | ||
|
||
/** | ||
* Fired before frame subtree is detached. Emitted before any frame of the subtree is actually detached. | ||
* | ||
* @generated This file has been auto-generated, do not edit. | ||
* | ||
* @author Jakub Kulhan <[email protected]> | ||
*/ | ||
final class FrameSubtreeWillBeDetachedEvent implements \JsonSerializable | ||
{ | ||
/** | ||
* Id of the frame that is the root of the subtree that will be detached. | ||
* | ||
* @var string | ||
*/ | ||
public $frameId; | ||
|
||
|
||
/** | ||
* @param object $data | ||
* @return static | ||
*/ | ||
public static function fromJson($data) | ||
{ | ||
$instance = new static(); | ||
if (isset($data->frameId)) { | ||
$instance->frameId = (string)$data->frameId; | ||
} | ||
return $instance; | ||
} | ||
|
||
|
||
public function jsonSerialize() | ||
{ | ||
$data = new \stdClass(); | ||
if ($this->frameId !== null) { | ||
$data->frameId = $this->frameId; | ||
} | ||
return $data; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
90d3b21228c4f4e0747b992fcd208c9f protocol.json | ||
5305c2779eaa47af85fa8336152d079d protocol.json |