- */
-class LocaleSwitcher implements LocaleAwareInterface
-{
- private string $defaultLocale;
-
- /**
- * @param LocaleAwareInterface[] $localeAwareServices
- */
- public function __construct(
- private string $locale,
- private iterable $localeAwareServices,
- private ?RequestContext $requestContext = null,
- ) {
- $this->defaultLocale = $locale;
- }
-
- public function setLocale(string $locale): void
- {
- if (class_exists(\Locale::class)) {
- \Locale::setDefault($locale);
- }
- $this->locale = $locale;
- $this->requestContext?->setParameter('_locale', $locale);
-
- foreach ($this->localeAwareServices as $service) {
- $service->setLocale($locale);
- }
- }
-
- public function getLocale(): string
- {
- return $this->locale;
- }
-
- /**
- * Switch to a new locale, execute a callback, then switch back to the original.
- *
- * @template T
- *
- * @param callable():T $callback
- *
- * @return T
- */
- public function runWithLocale(string $locale, callable $callback): mixed
- {
- $original = $this->getLocale();
- $this->setLocale($locale);
-
- try {
- return $callback();
- } finally {
- $this->setLocale($original);
- }
- }
-
- public function reset(): void
- {
- $this->setLocale($this->defaultLocale);
- }
-}
diff --git a/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd b/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd
deleted file mode 100644
index 1f38de72f..000000000
--- a/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd
+++ /dev/null
@@ -1,2261 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- Values for the attribute 'context-type'.
-
-
-
-
- Indicates a database content.
-
-
-
-
- Indicates the content of an element within an XML document.
-
-
-
-
- Indicates the name of an element within an XML document.
-
-
-
-
- Indicates the line number from the sourcefile (see context-type="sourcefile") where the <source> is found.
-
-
-
-
- Indicates a the number of parameters contained within the <source>.
-
-
-
-
- Indicates notes pertaining to the parameters in the <source>.
-
-
-
-
- Indicates the content of a record within a database.
-
-
-
-
- Indicates the name of a record within a database.
-
-
-
-
- Indicates the original source file in the case that multiple files are merged to form the original file from which the XLIFF file is created. This differs from the original <file> attribute in that this sourcefile is one of many that make up that file.
-
-
-
-
-
-
- Values for the attribute 'count-type'.
-
-
-
-
- Indicates the count units are items that are used X times in a certain context; example: this is a reusable text unit which is used 42 times in other texts.
-
-
-
-
- Indicates the count units are translation units existing already in the same document.
-
-
-
-
- Indicates a total count.
-
-
-
-
-
-
- Values for the attribute 'ctype' when used other elements than <ph> or <x>.
-
-
-
-
- Indicates a run of bolded text.
-
-
-
-
- Indicates a run of text in italics.
-
-
-
-
- Indicates a run of underlined text.
-
-
-
-
- Indicates a run of hyper-text.
-
-
-
-
-
-
- Values for the attribute 'ctype' when used with <ph> or <x>.
-
-
-
-
- Indicates a inline image.
-
-
-
-
- Indicates a page break.
-
-
-
-
- Indicates a line break.
-
-
-
-
-
-
-
-
-
-
-
- Values for the attribute 'datatype'.
-
-
-
-
- Indicates Active Server Page data.
-
-
-
-
- Indicates C source file data.
-
-
-
-
- Indicates Channel Definition Format (CDF) data.
-
-
-
-
- Indicates ColdFusion data.
-
-
-
-
- Indicates C++ source file data.
-
-
-
-
- Indicates C-Sharp data.
-
-
-
-
- Indicates strings from C, ASM, and driver files data.
-
-
-
-
- Indicates comma-separated values data.
-
-
-
-
- Indicates database data.
-
-
-
-
- Indicates portions of document that follows data and contains metadata.
-
-
-
-
- Indicates portions of document that precedes data and contains metadata.
-
-
-
-
- Indicates data from standard UI file operations dialogs (e.g., Open, Save, Save As, Export, Import).
-
-
-
-
- Indicates standard user input screen data.
-
-
-
-
- Indicates HyperText Markup Language (HTML) data - document instance.
-
-
-
-
- Indicates content within an HTML document’s <body> element.
-
-
-
-
- Indicates Windows INI file data.
-
-
-
-
- Indicates Interleaf data.
-
-
-
-
- Indicates Java source file data (extension '.java').
-
-
-
-
- Indicates Java property resource bundle data.
-
-
-
-
- Indicates Java list resource bundle data.
-
-
-
-
- Indicates JavaScript source file data.
-
-
-
-
- Indicates JScript source file data.
-
-
-
-
- Indicates information relating to formatting.
-
-
-
-
- Indicates LISP source file data.
-
-
-
-
- Indicates information relating to margin formats.
-
-
-
-
- Indicates a file containing menu.
-
-
-
-
- Indicates numerically identified string table.
-
-
-
-
- Indicates Maker Interchange Format (MIF) data.
-
-
-
-
- Indicates that the datatype attribute value is a MIME Type value and is defined in the mime-type attribute.
-
-
-
-
- Indicates GNU Machine Object data.
-
-
-
-
- Indicates Message Librarian strings created by Novell's Message Librarian Tool.
-
-
-
-
- Indicates information to be displayed at the bottom of each page of a document.
-
-
-
-
- Indicates information to be displayed at the top of each page of a document.
-
-
-
-
- Indicates a list of property values (e.g., settings within INI files or preferences dialog).
-
-
-
-
- Indicates Pascal source file data.
-
-
-
-
- Indicates Hypertext Preprocessor data.
-
-
-
-
- Indicates plain text file (no formatting other than, possibly, wrapping).
-
-
-
-
- Indicates GNU Portable Object file.
-
-
-
-
- Indicates dynamically generated user defined document. e.g. Oracle Report, Crystal Report, etc.
-
-
-
-
- Indicates Windows .NET binary resources.
-
-
-
-
- Indicates Windows .NET Resources.
-
-
-
-
- Indicates Rich Text Format (RTF) data.
-
-
-
-
- Indicates Standard Generalized Markup Language (SGML) data - document instance.
-
-
-
-
- Indicates Standard Generalized Markup Language (SGML) data - Document Type Definition (DTD).
-
-
-
-
- Indicates Scalable Vector Graphic (SVG) data.
-
-
-
-
- Indicates VisualBasic Script source file.
-
-
-
-
- Indicates warning message.
-
-
-
-
- Indicates Windows (Win32) resources (i.e. resources extracted from an RC script, a message file, or a compiled file).
-
-
-
-
- Indicates Extensible HyperText Markup Language (XHTML) data - document instance.
-
-
-
-
- Indicates Extensible Markup Language (XML) data - document instance.
-
-
-
-
- Indicates Extensible Markup Language (XML) data - Document Type Definition (DTD).
-
-
-
-
- Indicates Extensible Stylesheet Language (XSL) data.
-
-
-
-
- Indicates XUL elements.
-
-
-
-
-
-
- Values for the attribute 'mtype'.
-
-
-
-
- Indicates the marked text is an abbreviation.
-
-
-
-
- ISO-12620 2.1.8: A term resulting from the omission of any part of the full term while designating the same concept.
-
-
-
-
- ISO-12620 2.1.8.1: An abbreviated form of a simple term resulting from the omission of some of its letters (e.g. 'adj.' for 'adjective').
-
-
-
-
- ISO-12620 2.1.8.4: An abbreviated form of a term made up of letters from the full form of a multiword term strung together into a sequence pronounced only syllabically (e.g. 'radar' for 'radio detecting and ranging').
-
-
-
-
- ISO-12620: A proper-name term, such as the name of an agency or other proper entity.
-
-
-
-
- ISO-12620 2.1.18.1: A recurrent word combination characterized by cohesion in that the components of the collocation must co-occur within an utterance or series of utterances, even though they do not necessarily have to maintain immediate proximity to one another.
-
-
-
-
- ISO-12620 2.1.5: A synonym for an international scientific term that is used in general discourse in a given language.
-
-
-
-
- Indicates the marked text is a date and/or time.
-
-
-
-
- ISO-12620 2.1.15: An expression used to represent a concept based on a statement that two mathematical expressions are, for instance, equal as identified by the equal sign (=), or assigned to one another by a similar sign.
-
-
-
-
- ISO-12620 2.1.7: The complete representation of a term for which there is an abbreviated form.
-
-
-
-
- ISO-12620 2.1.14: Figures, symbols or the like used to express a concept briefly, such as a mathematical or chemical formula.
-
-
-
-
- ISO-12620 2.1.1: The concept designation that has been chosen to head a terminological record.
-
-
-
-
- ISO-12620 2.1.8.3: An abbreviated form of a term consisting of some of the initial letters of the words making up a multiword term or the term elements making up a compound term when these letters are pronounced individually (e.g. 'BSE' for 'bovine spongiform encephalopathy').
-
-
-
-
- ISO-12620 2.1.4: A term that is part of an international scientific nomenclature as adopted by an appropriate scientific body.
-
-
-
-
- ISO-12620 2.1.6: A term that has the same or nearly identical orthographic or phonemic form in many languages.
-
-
-
-
- ISO-12620 2.1.16: An expression used to represent a concept based on mathematical or logical relations, such as statements of inequality, set relationships, Boolean operations, and the like.
-
-
-
-
- ISO-12620 2.1.17: A unit to track object.
-
-
-
-
- Indicates the marked text is a name.
-
-
-
-
- ISO-12620 2.1.3: A term that represents the same or a very similar concept as another term in the same language, but for which interchangeability is limited to some contexts and inapplicable in others.
-
-
-
-
- ISO-12620 2.1.17.2: A unique alphanumeric designation assigned to an object in a manufacturing system.
-
-
-
-
- Indicates the marked text is a phrase.
-
-
-
-
- ISO-12620 2.1.18: Any group of two or more words that form a unit, the meaning of which frequently cannot be deduced based on the combined sense of the words making up the phrase.
-
-
-
-
- Indicates the marked text should not be translated.
-
-
-
-
- ISO-12620 2.1.12: A form of a term resulting from an operation whereby non-Latin writing systems are converted to the Latin alphabet.
-
-
-
-
- Indicates that the marked text represents a segment.
-
-
-
-
- ISO-12620 2.1.18.2: A fixed, lexicalized phrase.
-
-
-
-
- ISO-12620 2.1.8.2: A variant of a multiword term that includes fewer words than the full form of the term (e.g. 'Group of Twenty-four' for 'Intergovernmental Group of Twenty-four on International Monetary Affairs').
-
-
-
-
- ISO-12620 2.1.17.1: Stock keeping unit, an inventory item identified by a unique alphanumeric designation assigned to an object in an inventory control system.
-
-
-
-
- ISO-12620 2.1.19: A fixed chunk of recurring text.
-
-
-
-
- ISO-12620 2.1.13: A designation of a concept by letters, numerals, pictograms or any combination thereof.
-
-
-
-
- ISO-12620 2.1.2: Any term that represents the same or a very similar concept as the main entry term in a term entry.
-
-
-
-
- ISO-12620 2.1.18.3: Phraseological unit in a language that expresses the same semantic content as another phrase in that same language.
-
-
-
-
- Indicates the marked text is a term.
-
-
-
-
- ISO-12620 2.1.11: A form of a term resulting from an operation whereby the characters of one writing system are represented by characters from another writing system, taking into account the pronunciation of the characters converted.
-
-
-
-
- ISO-12620 2.1.10: A form of a term resulting from an operation whereby the characters of an alphabetic writing system are represented by characters from another alphabetic writing system.
-
-
-
-
- ISO-12620 2.1.8.5: An abbreviated form of a term resulting from the omission of one or more term elements or syllables (e.g. 'flu' for 'influenza').
-
-
-
-
- ISO-12620 2.1.9: One of the alternate forms of a term.
-
-
-
-
-
-
- Values for the attribute 'restype'.
-
-
-
-
- Indicates a Windows RC AUTO3STATE control.
-
-
-
-
- Indicates a Windows RC AUTOCHECKBOX control.
-
-
-
-
- Indicates a Windows RC AUTORADIOBUTTON control.
-
-
-
-
- Indicates a Windows RC BEDIT control.
-
-
-
-
- Indicates a bitmap, for example a BITMAP resource in Windows.
-
-
-
-
- Indicates a button object, for example a BUTTON control Windows.
-
-
-
-
- Indicates a caption, such as the caption of a dialog box.
-
-
-
-
- Indicates the cell in a table, for example the content of the <td> element in HTML.
-
-
-
-
- Indicates check box object, for example a CHECKBOX control in Windows.
-
-
-
-
- Indicates a menu item with an associated checkbox.
-
-
-
-
- Indicates a list box, but with a check-box for each item.
-
-
-
-
- Indicates a color selection dialog.
-
-
-
-
- Indicates a combination of edit box and listbox object, for example a COMBOBOX control in Windows.
-
-
-
-
- Indicates an initialization entry of an extended combobox DLGINIT resource block. (code 0x1234).
-
-
-
-
- Indicates an initialization entry of a combobox DLGINIT resource block (code 0x0403).
-
-
-
-
- Indicates a UI base class element that cannot be represented by any other element.
-
-
-
-
- Indicates a context menu.
-
-
-
-
- Indicates a Windows RC CTEXT control.
-
-
-
-
- Indicates a cursor, for example a CURSOR resource in Windows.
-
-
-
-
- Indicates a date/time picker.
-
-
-
-
- Indicates a Windows RC DEFPUSHBUTTON control.
-
-
-
-
- Indicates a dialog box.
-
-
-
-
- Indicates a Windows RC DLGINIT resource block.
-
-
-
-
- Indicates an edit box object, for example an EDIT control in Windows.
-
-
-
-
- Indicates a filename.
-
-
-
-
- Indicates a file dialog.
-
-
-
-
- Indicates a footnote.
-
-
-
-
- Indicates a font name.
-
-
-
-
- Indicates a footer.
-
-
-
-
- Indicates a frame object.
-
-
-
-
- Indicates a XUL grid element.
-
-
-
-
- Indicates a groupbox object, for example a GROUPBOX control in Windows.
-
-
-
-
- Indicates a header item.
-
-
-
-
- Indicates a heading, such has the content of <h1>, <h2>, etc. in HTML.
-
-
-
-
- Indicates a Windows RC HEDIT control.
-
-
-
-
- Indicates a horizontal scrollbar.
-
-
-
-
- Indicates an icon, for example an ICON resource in Windows.
-
-
-
-
- Indicates a Windows RC IEDIT control.
-
-
-
-
- Indicates keyword list, such as the content of the Keywords meta-data in HTML, or a K footnote in WinHelp RTF.
-
-
-
-
- Indicates a label object.
-
-
-
-
- Indicates a label that is also a HTML link (not necessarily a URL).
-
-
-
-
- Indicates a list (a group of list-items, for example an <ol> or <ul> element in HTML).
-
-
-
-
- Indicates a listbox object, for example an LISTBOX control in Windows.
-
-
-
-
- Indicates an list item (an entry in a list).
-
-
-
-
- Indicates a Windows RC LTEXT control.
-
-
-
-
- Indicates a menu (a group of menu-items).
-
-
-
-
- Indicates a toolbar containing one or more tope level menus.
-
-
-
-
- Indicates a menu item (an entry in a menu).
-
-
-
-
- Indicates a XUL menuseparator element.
-
-
-
-
- Indicates a message, for example an entry in a MESSAGETABLE resource in Windows.
-
-
-
-
- Indicates a calendar control.
-
-
-
-
- Indicates an edit box beside a spin control.
-
-
-
-
- Indicates a catch all for rectangular areas.
-
-
-
-
- Indicates a standalone menu not necessarily associated with a menubar.
-
-
-
-
- Indicates a pushbox object, for example a PUSHBOX control in Windows.
-
-
-
-
- Indicates a Windows RC PUSHBUTTON control.
-
-
-
-
- Indicates a radio button object.
-
-
-
-
- Indicates a menuitem with associated radio button.
-
-
-
-
- Indicates raw data resources for an application.
-
-
-
-
- Indicates a row in a table.
-
-
-
-
- Indicates a Windows RC RTEXT control.
-
-
-
-
- Indicates a user navigable container used to show a portion of a document.
-
-
-
-
- Indicates a generic divider object (e.g. menu group separator).
-
-
-
-
- Windows accelerators, shortcuts in resource or property files.
-
-
-
-
- Indicates a UI control to indicate process activity but not progress.
-
-
-
-
- Indicates a splitter bar.
-
-
-
-
- Indicates a Windows RC STATE3 control.
-
-
-
-
- Indicates a window for providing feedback to the users, like 'read-only', etc.
-
-
-
-
- Indicates a string, for example an entry in a STRINGTABLE resource in Windows.
-
-
-
-
- Indicates a layers of controls with a tab to select layers.
-
-
-
-
- Indicates a display and edits regular two-dimensional tables of cells.
-
-
-
-
- Indicates a XUL textbox element.
-
-
-
-
- Indicates a UI button that can be toggled to on or off state.
-
-
-
-
- Indicates an array of controls, usually buttons.
-
-
-
-
- Indicates a pop up tool tip text.
-
-
-
-
- Indicates a bar with a pointer indicating a position within a certain range.
-
-
-
-
- Indicates a control that displays a set of hierarchical data.
-
-
-
-
- Indicates a URI (URN or URL).
-
-
-
-
- Indicates a Windows RC USERBUTTON control.
-
-
-
-
- Indicates a user-defined control like CONTROL control in Windows.
-
-
-
-
- Indicates the text of a variable.
-
-
-
-
- Indicates version information about a resource like VERSIONINFO in Windows.
-
-
-
-
- Indicates a vertical scrollbar.
-
-
-
-
- Indicates a graphical window.
-
-
-
-
-
-
- Values for the attribute 'size-unit'.
-
-
-
-
- Indicates a size in 8-bit bytes.
-
-
-
-
- Indicates a size in Unicode characters.
-
-
-
-
- Indicates a size in columns. Used for HTML text area.
-
-
-
-
- Indicates a size in centimeters.
-
-
-
-
- Indicates a size in dialog units, as defined in Windows resources.
-
-
-
-
- Indicates a size in 'font-size' units (as defined in CSS).
-
-
-
-
- Indicates a size in 'x-height' units (as defined in CSS).
-
-
-
-
- Indicates a size in glyphs. A glyph is considered to be one or more combined Unicode characters that represent a single displayable text character. Sometimes referred to as a 'grapheme cluster'
-
-
-
-
- Indicates a size in inches.
-
-
-
-
- Indicates a size in millimeters.
-
-
-
-
- Indicates a size in percentage.
-
-
-
-
- Indicates a size in pixels.
-
-
-
-
- Indicates a size in point.
-
-
-
-
- Indicates a size in rows. Used for HTML text area.
-
-
-
-
-
-
- Values for the attribute 'state'.
-
-
-
-
- Indicates the terminating state.
-
-
-
-
- Indicates only non-textual information needs adaptation.
-
-
-
-
- Indicates both text and non-textual information needs adaptation.
-
-
-
-
- Indicates only non-textual information needs review.
-
-
-
-
- Indicates both text and non-textual information needs review.
-
-
-
-
- Indicates that only the text of the item needs to be reviewed.
-
-
-
-
- Indicates that the item needs to be translated.
-
-
-
-
- Indicates that the item is new. For example, translation units that were not in a previous version of the document.
-
-
-
-
- Indicates that changes are reviewed and approved.
-
-
-
-
- Indicates that the item has been translated.
-
-
-
-
-
-
- Values for the attribute 'state-qualifier'.
-
-
-
-
- Indicates an exact match. An exact match occurs when a source text of a segment is exactly the same as the source text of a segment that was translated previously.
-
-
-
-
- Indicates a fuzzy match. A fuzzy match occurs when a source text of a segment is very similar to the source text of a segment that was translated previously (e.g. when the difference is casing, a few changed words, white-space discripancy, etc.).
-
-
-
-
- Indicates a match based on matching IDs (in addition to matching text).
-
-
-
-
- Indicates a translation derived from a glossary.
-
-
-
-
- Indicates a translation derived from existing translation.
-
-
-
-
- Indicates a translation derived from machine translation.
-
-
-
-
- Indicates a translation derived from a translation repository.
-
-
-
-
- Indicates a translation derived from a translation memory.
-
-
-
-
- Indicates the translation is suggested by machine translation.
-
-
-
-
- Indicates that the item has been rejected because of incorrect grammar.
-
-
-
-
- Indicates that the item has been rejected because it is incorrect.
-
-
-
-
- Indicates that the item has been rejected because it is too long or too short.
-
-
-
-
- Indicates that the item has been rejected because of incorrect spelling.
-
-
-
-
- Indicates the translation is suggested by translation memory.
-
-
-
-
-
-
- Values for the attribute 'unit'.
-
-
-
-
- Refers to words.
-
-
-
-
- Refers to pages.
-
-
-
-
- Refers to <trans-unit> elements.
-
-
-
-
- Refers to <bin-unit> elements.
-
-
-
-
- Refers to glyphs.
-
-
-
-
- Refers to <trans-unit> and/or <bin-unit> elements.
-
-
-
-
- Refers to the occurrences of instances defined by the count-type value.
-
-
-
-
- Refers to characters.
-
-
-
-
- Refers to lines.
-
-
-
-
- Refers to sentences.
-
-
-
-
- Refers to paragraphs.
-
-
-
-
- Refers to segments.
-
-
-
-
- Refers to placeables (inline elements).
-
-
-
-
-
-
- Values for the attribute 'priority'.
-
-
-
-
- Highest priority.
-
-
-
-
- High priority.
-
-
-
-
- High priority, but not as important as 2.
-
-
-
-
- High priority, but not as important as 3.
-
-
-
-
- Medium priority, but more important than 6.
-
-
-
-
- Medium priority, but less important than 5.
-
-
-
-
- Low priority, but more important than 8.
-
-
-
-
- Low priority, but more important than 9.
-
-
-
-
- Low priority.
-
-
-
-
- Lowest priority.
-
-
-
-
-
-
-
-
- This value indicates that all properties can be reformatted. This value must be used alone.
-
-
-
-
- This value indicates that no properties should be reformatted. This value must be used alone.
-
-
-
-
-
-
-
-
-
-
-
-
- This value indicates that all information in the coord attribute can be modified.
-
-
-
-
- This value indicates that the x information in the coord attribute can be modified.
-
-
-
-
- This value indicates that the y information in the coord attribute can be modified.
-
-
-
-
- This value indicates that the cx information in the coord attribute can be modified.
-
-
-
-
- This value indicates that the cy information in the coord attribute can be modified.
-
-
-
-
- This value indicates that all the information in the font attribute can be modified.
-
-
-
-
- This value indicates that the name information in the font attribute can be modified.
-
-
-
-
- This value indicates that the size information in the font attribute can be modified.
-
-
-
-
- This value indicates that the weight information in the font attribute can be modified.
-
-
-
-
- This value indicates that the information in the css-style attribute can be modified.
-
-
-
-
- This value indicates that the information in the style attribute can be modified.
-
-
-
-
- This value indicates that the information in the exstyle attribute can be modified.
-
-
-
-
-
-
-
-
-
-
-
-
- Indicates that the context is informational in nature, specifying for example, how a term should be translated. Thus, should be displayed to anyone editing the XLIFF document.
-
-
-
-
- Indicates that the context-group is used to specify where the term was found in the translatable source. Thus, it is not displayed.
-
-
-
-
- Indicates that the context information should be used during translation memory lookups. Thus, it is not displayed.
-
-
-
-
-
-
-
-
- Represents a translation proposal from a translation memory or other resource.
-
-
-
-
- Represents a previous version of the target element.
-
-
-
-
- Represents a rejected version of the target element.
-
-
-
-
- Represents a translation to be used for reference purposes only, for example from a related product or a different language.
-
-
-
-
- Represents a proposed translation that was used for the translation of the trans-unit, possibly modified.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Values for the attribute 'coord'.
-
-
-
-
-
-
-
- Version values: 1.0 and 1.1 are allowed for backward compatibility.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/vendor/symfony/var-exporter/Exception/LogicException.php b/vendor/symfony/var-exporter/Exception/LogicException.php
deleted file mode 100644
index 619d0559a..000000000
--- a/vendor/symfony/var-exporter/Exception/LogicException.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter\Exception;
-
-class LogicException extends \LogicException implements ExceptionInterface
-{
-}
diff --git a/vendor/symfony/var-exporter/Hydrator.php b/vendor/symfony/var-exporter/Hydrator.php
deleted file mode 100644
index 5f456fb3c..000000000
--- a/vendor/symfony/var-exporter/Hydrator.php
+++ /dev/null
@@ -1,78 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter;
-
-use Symfony\Component\VarExporter\Internal\Hydrator as InternalHydrator;
-
-/**
- * Utility class to hydrate the properties of an object.
- *
- * @author Nicolas Grekas
- */
-final class Hydrator
-{
- /**
- * Sets the properties of an object, including private and protected ones.
- *
- * For example:
- *
- * // Sets the public or protected $object->propertyName property
- * Hydrator::hydrate($object, ['propertyName' => $propertyValue]);
- *
- * // Sets a private property defined on its parent Bar class:
- * Hydrator::hydrate($object, ["\0Bar\0privateBarProperty" => $propertyValue]);
- *
- * // Alternative way to set the private $object->privateBarProperty property
- * Hydrator::hydrate($object, [], [
- * Bar::class => ['privateBarProperty' => $propertyValue],
- * ]);
- *
- * Instances of ArrayObject, ArrayIterator and SplObjectStorage can be hydrated
- * by using the special "\0" property name to define their internal value:
- *
- * // Hydrates an SplObjectStorage where $info1 is attached to $obj1, etc.
- * Hydrator::hydrate($object, ["\0" => [$obj1, $info1, $obj2, $info2...]]);
- *
- * // Hydrates an ArrayObject populated with $inputArray
- * Hydrator::hydrate($object, ["\0" => [$inputArray]]);
- *
- * @template T of object
- *
- * @param T $instance The object to hydrate
- * @param array $properties The properties to set on the instance
- * @param array> $scopedProperties The properties to set on the instance,
- * keyed by their declaring class
- *
- * @return T
- */
- public static function hydrate(object $instance, array $properties = [], array $scopedProperties = []): object
- {
- if ($properties) {
- $class = $instance::class;
- $propertyScopes = InternalHydrator::$propertyScopes[$class] ??= InternalHydrator::getPropertyScopes($class);
-
- foreach ($properties as $name => &$value) {
- [$scope, $name, $readonlyScope] = $propertyScopes[$name] ?? [$class, $name, $class];
- $scopedProperties[$readonlyScope ?? $scope][$name] = &$value;
- }
- unset($value);
- }
-
- foreach ($scopedProperties as $scope => $properties) {
- if ($properties) {
- (InternalHydrator::$simpleHydrators[$scope] ??= InternalHydrator::getSimpleHydrator($scope))($properties, $instance);
- }
- }
-
- return $instance;
- }
-}
diff --git a/vendor/symfony/var-exporter/Internal/LazyObjectRegistry.php b/vendor/symfony/var-exporter/Internal/LazyObjectRegistry.php
deleted file mode 100644
index d9d992557..000000000
--- a/vendor/symfony/var-exporter/Internal/LazyObjectRegistry.php
+++ /dev/null
@@ -1,146 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter\Internal;
-
-/**
- * Stores the state of lazy objects and caches related reflection information.
- *
- * As a micro-optimization, this class uses no type declarations.
- *
- * @internal
- */
-class LazyObjectRegistry
-{
- /**
- * @var array
- */
- public static $classReflectors = [];
-
- /**
- * @var array>
- */
- public static $defaultProperties = [];
-
- /**
- * @var array>
- */
- public static $classResetters = [];
-
- /**
- * @var array
- */
- public static $classAccessors = [];
-
- /**
- * @var array
- */
- public static $parentMethods = [];
-
- public static ?\Closure $noInitializerState = null;
-
- public static function getClassResetters($class)
- {
- $classProperties = [];
-
- if ((self::$classReflectors[$class] ??= new \ReflectionClass($class))->isInternal()) {
- $propertyScopes = [];
- } else {
- $propertyScopes = Hydrator::$propertyScopes[$class] ??= Hydrator::getPropertyScopes($class);
- }
-
- foreach ($propertyScopes as $key => [$scope, $name, $readonlyScope]) {
- $propertyScopes[$k = "\0$scope\0$name"] ?? $propertyScopes[$k = "\0*\0$name"] ?? $k = $name;
-
- if ($k === $key && "\0$class\0lazyObjectState" !== $k) {
- $classProperties[$readonlyScope ?? $scope][$name] = $key;
- }
- }
-
- $resetters = [];
- foreach ($classProperties as $scope => $properties) {
- $resetters[] = \Closure::bind(static function ($instance, $skippedProperties, $onlyProperties = null) use ($properties) {
- foreach ($properties as $name => $key) {
- if (!\array_key_exists($key, $skippedProperties) && (null === $onlyProperties || \array_key_exists($key, $onlyProperties))) {
- unset($instance->$name);
- }
- }
- }, null, $scope);
- }
-
- $resetters[] = static function ($instance, $skippedProperties, $onlyProperties = null) {
- foreach ((array) $instance as $name => $value) {
- if ("\0" !== ($name[0] ?? '') && !\array_key_exists($name, $skippedProperties) && (null === $onlyProperties || \array_key_exists($name, $onlyProperties))) {
- unset($instance->$name);
- }
- }
- };
-
- return $resetters;
- }
-
- public static function getClassAccessors($class)
- {
- return \Closure::bind(static fn () => [
- 'get' => static function &($instance, $name, $readonly) {
- if (!$readonly) {
- return $instance->$name;
- }
- $value = $instance->$name;
-
- return $value;
- },
- 'set' => static function ($instance, $name, $value) {
- $instance->$name = $value;
- },
- 'isset' => static fn ($instance, $name) => isset($instance->$name),
- 'unset' => static function ($instance, $name) {
- unset($instance->$name);
- },
- ], null, \Closure::class === $class ? null : $class)();
- }
-
- public static function getParentMethods($class)
- {
- $parent = get_parent_class($class);
- $methods = [];
-
- foreach (['set', 'isset', 'unset', 'clone', 'serialize', 'unserialize', 'sleep', 'wakeup', 'destruct', 'get'] as $method) {
- if (!$parent || !method_exists($parent, '__'.$method)) {
- $methods[$method] = false;
- } else {
- $m = new \ReflectionMethod($parent, '__'.$method);
- $methods[$method] = !$m->isAbstract() && !$m->isPrivate();
- }
- }
-
- $methods['get'] = $methods['get'] ? ($m->returnsReference() ? 2 : 1) : 0;
-
- return $methods;
- }
-
- public static function getScope($propertyScopes, $class, $property, $readonlyScope = null)
- {
- if (null === $readonlyScope && !isset($propertyScopes[$k = "\0$class\0$property"]) && !isset($propertyScopes[$k = "\0*\0$property"])) {
- return null;
- }
- $frame = debug_backtrace(\DEBUG_BACKTRACE_PROVIDE_OBJECT | \DEBUG_BACKTRACE_IGNORE_ARGS, 3)[2];
-
- if (\ReflectionProperty::class === $scope = $frame['class'] ?? \Closure::class) {
- $scope = $frame['object']->class;
- }
- if (null === $readonlyScope && '*' === $k[1] && ($class === $scope || (is_subclass_of($class, $scope) && !isset($propertyScopes["\0$scope\0$property"])))) {
- return null;
- }
-
- return $scope;
- }
-}
diff --git a/vendor/symfony/var-exporter/Internal/LazyObjectState.php b/vendor/symfony/var-exporter/Internal/LazyObjectState.php
deleted file mode 100644
index 2f649dd1c..000000000
--- a/vendor/symfony/var-exporter/Internal/LazyObjectState.php
+++ /dev/null
@@ -1,130 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter\Internal;
-
-use Symfony\Component\VarExporter\Hydrator as PublicHydrator;
-
-/**
- * Keeps the state of lazy objects.
- *
- * As a micro-optimization, this class uses no type declarations.
- *
- * @internal
- */
-class LazyObjectState
-{
- public const STATUS_UNINITIALIZED_FULL = 1;
- public const STATUS_UNINITIALIZED_PARTIAL = 2;
- public const STATUS_INITIALIZED_FULL = 3;
- public const STATUS_INITIALIZED_PARTIAL = 4;
-
- /**
- * @var array
- */
- public readonly array $skippedProperties;
-
- /**
- * @var self::STATUS_*
- */
- public int $status = 0;
-
- public object $realInstance;
-
- public function __construct(public readonly \Closure|array $initializer, $skippedProperties = [])
- {
- $this->skippedProperties = $skippedProperties;
- $this->status = \is_array($initializer) ? self::STATUS_UNINITIALIZED_PARTIAL : self::STATUS_UNINITIALIZED_FULL;
- }
-
- public function initialize($instance, $propertyName, $propertyScope)
- {
- if (self::STATUS_INITIALIZED_FULL === $this->status) {
- return self::STATUS_INITIALIZED_FULL;
- }
-
- if (\is_array($this->initializer)) {
- $class = $instance::class;
- $propertyScope ??= $class;
- $propertyScopes = Hydrator::$propertyScopes[$class];
- $propertyScopes[$k = "\0$propertyScope\0$propertyName"] ?? $propertyScopes[$k = "\0*\0$propertyName"] ?? $k = $propertyName;
-
- if ($initializer = $this->initializer[$k] ?? null) {
- $value = $initializer(...[$instance, $propertyName, $propertyScope, LazyObjectRegistry::$defaultProperties[$class][$k] ?? null]);
- $accessor = LazyObjectRegistry::$classAccessors[$propertyScope] ??= LazyObjectRegistry::getClassAccessors($propertyScope);
- $accessor['set']($instance, $propertyName, $value);
-
- return $this->status = self::STATUS_INITIALIZED_PARTIAL;
- }
-
- $status = self::STATUS_UNINITIALIZED_PARTIAL;
-
- if ($initializer = $this->initializer["\0"] ?? null) {
- if (!\is_array($values = $initializer($instance, LazyObjectRegistry::$defaultProperties[$class]))) {
- throw new \TypeError(sprintf('The lazy-initializer defined for instance of "%s" must return an array, got "%s".', $class, get_debug_type($values)));
- }
- $properties = (array) $instance;
- foreach ($values as $key => $value) {
- if ($k === $key) {
- $status = self::STATUS_INITIALIZED_PARTIAL;
- }
- if (!\array_key_exists($key, $properties) && [$scope, $name, $readonlyScope] = $propertyScopes[$key] ?? null) {
- $scope = $readonlyScope ?? ('*' !== $scope ? $scope : $class);
- $accessor = LazyObjectRegistry::$classAccessors[$scope] ??= LazyObjectRegistry::getClassAccessors($scope);
- $accessor['set']($instance, $name, $value);
- }
- }
- }
-
- return $status;
- }
-
- $this->status = self::STATUS_INITIALIZED_FULL;
-
- try {
- if ($defaultProperties = array_diff_key(LazyObjectRegistry::$defaultProperties[$instance::class], $this->skippedProperties)) {
- PublicHydrator::hydrate($instance, $defaultProperties);
- }
-
- ($this->initializer)($instance);
- } catch (\Throwable $e) {
- $this->status = self::STATUS_UNINITIALIZED_FULL;
- $this->reset($instance);
-
- throw $e;
- }
-
- return self::STATUS_INITIALIZED_FULL;
- }
-
- public function reset($instance): void
- {
- $class = $instance::class;
- $propertyScopes = Hydrator::$propertyScopes[$class] ??= Hydrator::getPropertyScopes($class);
- $skippedProperties = $this->skippedProperties;
- $properties = (array) $instance;
- $onlyProperties = \is_array($this->initializer) ? $this->initializer : null;
-
- foreach ($propertyScopes as $key => [$scope, $name, $readonlyScope]) {
- $propertyScopes[$k = "\0$scope\0$name"] ?? $propertyScopes[$k = "\0*\0$name"] ?? $k = $name;
-
- if ($k === $key && (null !== $readonlyScope || !\array_key_exists($k, $properties))) {
- $skippedProperties[$k] = true;
- }
- }
-
- foreach (LazyObjectRegistry::$classResetters[$class] as $reset) {
- $reset($instance, $skippedProperties, $onlyProperties);
- }
-
- $this->status = self::STATUS_INITIALIZED_FULL === $this->status ? self::STATUS_UNINITIALIZED_FULL : self::STATUS_UNINITIALIZED_PARTIAL;
- }
-}
diff --git a/vendor/symfony/var-exporter/Internal/LazyObjectTrait.php b/vendor/symfony/var-exporter/Internal/LazyObjectTrait.php
deleted file mode 100644
index cccdf6cff..000000000
--- a/vendor/symfony/var-exporter/Internal/LazyObjectTrait.php
+++ /dev/null
@@ -1,30 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter\Internal;
-
-if (\PHP_VERSION_ID >= 80300) {
- /**
- * @internal
- */
- trait LazyObjectTrait
- {
- private readonly LazyObjectState $lazyObjectState;
- }
-} else {
- /**
- * @internal
- */
- trait LazyObjectTrait
- {
- private LazyObjectState $lazyObjectState;
- }
-}
diff --git a/vendor/symfony/var-exporter/LazyGhostTrait.php b/vendor/symfony/var-exporter/LazyGhostTrait.php
deleted file mode 100644
index 13e33f59c..000000000
--- a/vendor/symfony/var-exporter/LazyGhostTrait.php
+++ /dev/null
@@ -1,391 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter;
-
-use Symfony\Component\VarExporter\Internal\Hydrator;
-use Symfony\Component\VarExporter\Internal\LazyObjectRegistry as Registry;
-use Symfony\Component\VarExporter\Internal\LazyObjectState;
-use Symfony\Component\VarExporter\Internal\LazyObjectTrait;
-
-trait LazyGhostTrait
-{
- use LazyObjectTrait;
-
- /**
- * Creates a lazy-loading ghost instance.
- *
- * When the initializer is a closure, it should initialize all properties at
- * once and is given the instance to initialize as argument.
- *
- * When the initializer is an array of closures, it should be indexed by
- * properties and closures should accept 4 arguments: the instance to
- * initialize, the property to initialize, its write-scope, and its default
- * value. Each closure should return the value of the corresponding property.
- * The special "\0" key can be used to define a closure that returns all
- * properties at once when full-initialization is needed; it takes the
- * instance and its default properties as arguments.
- *
- * Properties should be indexed by their array-cast name, see
- * https://php.net/manual/language.types.array#language.types.array.casting
- *
- * @param (\Closure(static):void
- * |array
- * |array{"\0": \Closure(static, array):array}) $initializer
- * @param array|null $skippedProperties An array indexed by the properties to skip, aka the ones
- * that the initializer doesn't set when its a closure
- * @param static|null $instance
- */
- public static function createLazyGhost(\Closure|array $initializer, array $skippedProperties = null, object $instance = null): static
- {
- $onlyProperties = null === $skippedProperties && \is_array($initializer) ? $initializer : null;
-
- if (self::class !== $class = $instance ? $instance::class : static::class) {
- $skippedProperties["\0".self::class."\0lazyObjectState"] = true;
- } elseif (\defined($class.'::LAZY_OBJECT_PROPERTY_SCOPES')) {
- Hydrator::$propertyScopes[$class] ??= $class::LAZY_OBJECT_PROPERTY_SCOPES;
- }
-
- $instance ??= (Registry::$classReflectors[$class] ??= new \ReflectionClass($class))->newInstanceWithoutConstructor();
- Registry::$defaultProperties[$class] ??= (array) $instance;
- $instance->lazyObjectState = new LazyObjectState($initializer, $skippedProperties ??= []);
-
- foreach (Registry::$classResetters[$class] ??= Registry::getClassResetters($class) as $reset) {
- $reset($instance, $skippedProperties, $onlyProperties);
- }
-
- return $instance;
- }
-
- /**
- * Returns whether the object is initialized.
- *
- * @param $partial Whether partially initialized objects should be considered as initialized
- */
- public function isLazyObjectInitialized(bool $partial = false): bool
- {
- if (!$state = $this->lazyObjectState ?? null) {
- return true;
- }
-
- if (!\is_array($state->initializer)) {
- return LazyObjectState::STATUS_INITIALIZED_FULL === $state->status;
- }
-
- $class = $this::class;
- $properties = (array) $this;
-
- if ($partial) {
- return (bool) array_intersect_key($state->initializer, $properties);
- }
-
- $propertyScopes = Hydrator::$propertyScopes[$class] ??= Hydrator::getPropertyScopes($class);
- foreach ($state->initializer as $key => $initializer) {
- if (!\array_key_exists($key, $properties) && isset($propertyScopes[$key])) {
- return false;
- }
- }
-
- return true;
- }
-
- /**
- * Forces initialization of a lazy object and returns it.
- */
- public function initializeLazyObject(): static
- {
- if (!$state = $this->lazyObjectState ?? null) {
- return $this;
- }
-
- if (!\is_array($state->initializer)) {
- if (LazyObjectState::STATUS_UNINITIALIZED_FULL === $state->status) {
- $state->initialize($this, '', null);
- }
-
- return $this;
- }
-
- $values = isset($state->initializer["\0"]) ? null : [];
-
- $class = $this::class;
- $properties = (array) $this;
- $propertyScopes = Hydrator::$propertyScopes[$class] ??= Hydrator::getPropertyScopes($class);
- foreach ($state->initializer as $key => $initializer) {
- if (\array_key_exists($key, $properties) || ![$scope, $name, $readonlyScope] = $propertyScopes[$key] ?? null) {
- continue;
- }
- $scope = $readonlyScope ?? ('*' !== $scope ? $scope : $class);
-
- if (null === $values) {
- if (!\is_array($values = ($state->initializer["\0"])($this, Registry::$defaultProperties[$class]))) {
- throw new \TypeError(sprintf('The lazy-initializer defined for instance of "%s" must return an array, got "%s".', $class, get_debug_type($values)));
- }
-
- if (\array_key_exists($key, $properties = (array) $this)) {
- continue;
- }
- }
-
- if (\array_key_exists($key, $values)) {
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- $accessor['set']($this, $name, $properties[$key] = $values[$key]);
- } else {
- $state->initialize($this, $name, $scope);
- $properties = (array) $this;
- }
- }
-
- return $this;
- }
-
- /**
- * @return bool Returns false when the object cannot be reset, ie when it's not a lazy object
- */
- public function resetLazyObject(): bool
- {
- if (!$state = $this->lazyObjectState ?? null) {
- return false;
- }
-
- if (LazyObjectState::STATUS_UNINITIALIZED_FULL !== $state->status) {
- $state->reset($this);
- }
-
- return true;
- }
-
- public function &__get($name): mixed
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
-
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name);
- $state = $this->lazyObjectState ?? null;
-
- if ($state && (null === $scope || isset($propertyScopes["\0$scope\0$name"]))
- && LazyObjectState::STATUS_UNINITIALIZED_PARTIAL !== $state->initialize($this, $name, $readonlyScope ?? $scope)
- ) {
- goto get_in_scope;
- }
- }
-
- if ($parent = (Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['get']) {
- if (2 === $parent) {
- return parent::__get($name);
- }
- $value = parent::__get($name);
-
- return $value;
- }
-
- if (null === $class) {
- $frame = debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS, 1)[0];
- trigger_error(sprintf('Undefined property: %s::$%s in %s on line %s', $this::class, $name, $frame['file'], $frame['line']), \E_USER_NOTICE);
- }
-
- get_in_scope:
-
- try {
- if (null === $scope) {
- if (null === $readonlyScope) {
- return $this->$name;
- }
- $value = $this->$name;
-
- return $value;
- }
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
-
- return $accessor['get']($this, $name, null !== $readonlyScope);
- } catch (\Error $e) {
- if (\Error::class !== $e::class || !str_starts_with($e->getMessage(), 'Cannot access uninitialized non-nullable property')) {
- throw $e;
- }
-
- try {
- if (null === $scope) {
- $this->$name = [];
-
- return $this->$name;
- }
-
- $accessor['set']($this, $name, []);
-
- return $accessor['get']($this, $name, null !== $readonlyScope);
- } catch (\Error) {
- throw $e;
- }
- }
- }
-
- public function __set($name, $value): void
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
-
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name, $readonlyScope);
- $state = $this->lazyObjectState ?? null;
-
- if ($state && ($readonlyScope === $scope || isset($propertyScopes["\0$scope\0$name"]))) {
- if (LazyObjectState::STATUS_UNINITIALIZED_FULL === $state->status) {
- $state->initialize($this, $name, $readonlyScope ?? $scope);
- }
- goto set_in_scope;
- }
- }
-
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['set']) {
- parent::__set($name, $value);
-
- return;
- }
-
- set_in_scope:
-
- if (null === $scope) {
- $this->$name = $value;
- } else {
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- $accessor['set']($this, $name, $value);
- }
- }
-
- public function __isset($name): bool
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
-
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name);
- $state = $this->lazyObjectState ?? null;
-
- if ($state && (null === $scope || isset($propertyScopes["\0$scope\0$name"]))
- && LazyObjectState::STATUS_UNINITIALIZED_PARTIAL !== $state->initialize($this, $name, $readonlyScope ?? $scope)
- ) {
- goto isset_in_scope;
- }
- }
-
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['isset']) {
- return parent::__isset($name);
- }
-
- isset_in_scope:
-
- if (null === $scope) {
- return isset($this->$name);
- }
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
-
- return $accessor['isset']($this, $name);
- }
-
- public function __unset($name): void
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
-
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name, $readonlyScope);
- $state = $this->lazyObjectState ?? null;
-
- if ($state && ($readonlyScope === $scope || isset($propertyScopes["\0$scope\0$name"]))) {
- if (LazyObjectState::STATUS_UNINITIALIZED_FULL === $state->status) {
- $state->initialize($this, $name, $readonlyScope ?? $scope);
- }
- goto unset_in_scope;
- }
- }
-
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['unset']) {
- parent::__unset($name);
-
- return;
- }
-
- unset_in_scope:
-
- if (null === $scope) {
- unset($this->$name);
- } else {
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- $accessor['unset']($this, $name);
- }
- }
-
- public function __clone(): void
- {
- if ($state = $this->lazyObjectState ?? null) {
- $this->lazyObjectState = clone $state;
- }
-
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['clone']) {
- parent::__clone();
- }
- }
-
- public function __serialize(): array
- {
- $class = self::class;
-
- if ((Registry::$parentMethods[$class] ??= Registry::getParentMethods($class))['serialize']) {
- $properties = parent::__serialize();
- } else {
- $this->initializeLazyObject();
- $properties = (array) $this;
- }
- unset($properties["\0$class\0lazyObjectState"]);
-
- if (Registry::$parentMethods[$class]['serialize'] || !Registry::$parentMethods[$class]['sleep']) {
- return $properties;
- }
-
- $scope = get_parent_class($class);
- $data = [];
-
- foreach (parent::__sleep() as $name) {
- $value = $properties[$k = $name] ?? $properties[$k = "\0*\0$name"] ?? $properties[$k = "\0$scope\0$name"] ?? $k = null;
-
- if (null === $k) {
- trigger_error(sprintf('serialize(): "%s" returned as member variable from __sleep() but does not exist', $name), \E_USER_NOTICE);
- } else {
- $data[$k] = $value;
- }
- }
-
- return $data;
- }
-
- public function __destruct()
- {
- $state = $this->lazyObjectState ?? null;
-
- if ($state && \in_array($state->status, [LazyObjectState::STATUS_UNINITIALIZED_FULL, LazyObjectState::STATUS_UNINITIALIZED_PARTIAL], true)) {
- return;
- }
-
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['destruct']) {
- parent::__destruct();
- }
- }
-
- private function setLazyObjectAsInitialized(bool $initialized): void
- {
- $state = $this->lazyObjectState ?? null;
-
- if ($state && !\is_array($state->initializer)) {
- $state->status = $initialized ? LazyObjectState::STATUS_INITIALIZED_FULL : LazyObjectState::STATUS_UNINITIALIZED_FULL;
- }
- }
-}
diff --git a/vendor/symfony/var-exporter/LazyObjectInterface.php b/vendor/symfony/var-exporter/LazyObjectInterface.php
deleted file mode 100644
index 367088459..000000000
--- a/vendor/symfony/var-exporter/LazyObjectInterface.php
+++ /dev/null
@@ -1,32 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter;
-
-interface LazyObjectInterface
-{
- /**
- * Returns whether the object is initialized.
- *
- * @param $partial Whether partially initialized objects should be considered as initialized
- */
- public function isLazyObjectInitialized(bool $partial = false): bool;
-
- /**
- * Forces initialization of a lazy object and returns it.
- */
- public function initializeLazyObject(): object;
-
- /**
- * @return bool Returns false when the object cannot be reset, ie when it's not a lazy object
- */
- public function resetLazyObject(): bool;
-}
diff --git a/vendor/symfony/var-exporter/LazyProxyTrait.php b/vendor/symfony/var-exporter/LazyProxyTrait.php
deleted file mode 100644
index 153c38208..000000000
--- a/vendor/symfony/var-exporter/LazyProxyTrait.php
+++ /dev/null
@@ -1,347 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter;
-
-use Symfony\Component\VarExporter\Hydrator as PublicHydrator;
-use Symfony\Component\VarExporter\Internal\Hydrator;
-use Symfony\Component\VarExporter\Internal\LazyObjectRegistry as Registry;
-use Symfony\Component\VarExporter\Internal\LazyObjectState;
-use Symfony\Component\VarExporter\Internal\LazyObjectTrait;
-
-trait LazyProxyTrait
-{
- use LazyObjectTrait;
-
- /**
- * Creates a lazy-loading virtual proxy.
- *
- * @param \Closure():object $initializer Returns the proxied object
- * @param static|null $instance
- */
- public static function createLazyProxy(\Closure $initializer, object $instance = null): static
- {
- if (self::class !== $class = $instance ? $instance::class : static::class) {
- $skippedProperties = ["\0".self::class."\0lazyObjectState" => true];
- } elseif (\defined($class.'::LAZY_OBJECT_PROPERTY_SCOPES')) {
- Hydrator::$propertyScopes[$class] ??= $class::LAZY_OBJECT_PROPERTY_SCOPES;
- }
-
- $instance ??= (Registry::$classReflectors[$class] ??= new \ReflectionClass($class))->newInstanceWithoutConstructor();
- $instance->lazyObjectState = new LazyObjectState($initializer);
-
- foreach (Registry::$classResetters[$class] ??= Registry::getClassResetters($class) as $reset) {
- $reset($instance, $skippedProperties ??= []);
- }
-
- return $instance;
- }
-
- /**
- * Returns whether the object is initialized.
- *
- * @param $partial Whether partially initialized objects should be considered as initialized
- */
- public function isLazyObjectInitialized(bool $partial = false): bool
- {
- return !isset($this->lazyObjectState) || isset($this->lazyObjectState->realInstance) || Registry::$noInitializerState === $this->lazyObjectState->initializer;
- }
-
- /**
- * Forces initialization of a lazy object and returns it.
- */
- public function initializeLazyObject(): parent
- {
- if ($state = $this->lazyObjectState ?? null) {
- return $state->realInstance ??= ($state->initializer)();
- }
-
- return $this;
- }
-
- /**
- * @return bool Returns false when the object cannot be reset, ie when it's not a lazy object
- */
- public function resetLazyObject(): bool
- {
- if (!isset($this->lazyObjectState) || Registry::$noInitializerState === $this->lazyObjectState->initializer) {
- return false;
- }
-
- unset($this->lazyObjectState->realInstance);
-
- return true;
- }
-
- public function &__get($name): mixed
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
-
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name);
-
- if (null === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- $parent = 2;
- goto get_in_scope;
- }
- }
- $parent = (Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['get'];
-
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } else {
- if (2 === $parent) {
- return parent::__get($name);
- }
- $value = parent::__get($name);
-
- return $value;
- }
-
- if (!$parent && null === $class && !\array_key_exists($name, (array) $instance)) {
- $frame = debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS, 1)[0];
- trigger_error(sprintf('Undefined property: %s::$%s in %s on line %s', $instance::class, $name, $frame['file'], $frame['line']), \E_USER_NOTICE);
- }
-
- get_in_scope:
-
- try {
- if (null === $scope) {
- if (null === $readonlyScope && 1 !== $parent) {
- return $instance->$name;
- }
- $value = $instance->$name;
-
- return $value;
- }
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
-
- return $accessor['get']($instance, $name, null !== $readonlyScope || 1 === $parent);
- } catch (\Error $e) {
- if (\Error::class !== $e::class || !str_starts_with($e->getMessage(), 'Cannot access uninitialized non-nullable property')) {
- throw $e;
- }
-
- try {
- if (null === $scope) {
- $instance->$name = [];
-
- return $instance->$name;
- }
-
- $accessor['set']($instance, $name, []);
-
- return $accessor['get']($instance, $name, null !== $readonlyScope || 1 === $parent);
- } catch (\Error) {
- throw $e;
- }
- }
- }
-
- public function __set($name, $value): void
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
-
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name, $readonlyScope);
-
- if ($readonlyScope === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- goto set_in_scope;
- }
- }
-
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } elseif ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['set']) {
- parent::__set($name, $value);
-
- return;
- }
-
- set_in_scope:
-
- if (null === $scope) {
- $instance->$name = $value;
- } else {
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- $accessor['set']($instance, $name, $value);
- }
- }
-
- public function __isset($name): bool
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
-
- if ([$class] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name);
-
- if (null === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- goto isset_in_scope;
- }
- }
-
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } elseif ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['isset']) {
- return parent::__isset($name);
- }
-
- isset_in_scope:
-
- if (null === $scope) {
- return isset($instance->$name);
- }
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
-
- return $accessor['isset']($instance, $name);
- }
-
- public function __unset($name): void
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
-
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name, $readonlyScope);
-
- if ($readonlyScope === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- goto unset_in_scope;
- }
- }
-
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } elseif ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['unset']) {
- parent::__unset($name);
-
- return;
- }
-
- unset_in_scope:
-
- if (null === $scope) {
- unset($instance->$name);
- } else {
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- $accessor['unset']($instance, $name);
- }
- }
-
- public function __clone(): void
- {
- if (!isset($this->lazyObjectState)) {
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['clone']) {
- parent::__clone();
- }
-
- return;
- }
-
- $this->lazyObjectState = clone $this->lazyObjectState;
-
- if (isset($this->lazyObjectState->realInstance)) {
- $this->lazyObjectState->realInstance = clone $this->lazyObjectState->realInstance;
- }
- }
-
- public function __serialize(): array
- {
- $class = self::class;
- $state = $this->lazyObjectState ?? null;
-
- if (!$state && (Registry::$parentMethods[$class] ??= Registry::getParentMethods($class))['serialize']) {
- $properties = parent::__serialize();
- } else {
- $properties = (array) $this;
-
- if ($state) {
- unset($properties["\0$class\0lazyObjectState"]);
- $properties["\0$class\0lazyObjectReal"] = $state->realInstance ??= ($state->initializer)();
- }
- }
-
- if ($state || Registry::$parentMethods[$class]['serialize'] || !Registry::$parentMethods[$class]['sleep']) {
- return $properties;
- }
-
- $scope = get_parent_class($class);
- $data = [];
-
- foreach (parent::__sleep() as $name) {
- $value = $properties[$k = $name] ?? $properties[$k = "\0*\0$name"] ?? $properties[$k = "\0$scope\0$name"] ?? $k = null;
-
- if (null === $k) {
- trigger_error(sprintf('serialize(): "%s" returned as member variable from __sleep() but does not exist', $name), \E_USER_NOTICE);
- } else {
- $data[$k] = $value;
- }
- }
-
- return $data;
- }
-
- public function __unserialize(array $data): void
- {
- $class = self::class;
-
- if ($instance = $data["\0$class\0lazyObjectReal"] ?? null) {
- unset($data["\0$class\0lazyObjectReal"]);
-
- foreach (Registry::$classResetters[$class] ??= Registry::getClassResetters($class) as $reset) {
- $reset($this, $data);
- }
-
- if ($data) {
- PublicHydrator::hydrate($this, $data);
- }
- $this->lazyObjectState = new LazyObjectState(Registry::$noInitializerState ??= static fn () => throw new \LogicException('Lazy proxy has no initializer.'));
- $this->lazyObjectState->realInstance = $instance;
- } elseif ((Registry::$parentMethods[$class] ??= Registry::getParentMethods($class))['unserialize']) {
- parent::__unserialize($data);
- } else {
- PublicHydrator::hydrate($this, $data);
-
- if (Registry::$parentMethods[$class]['wakeup']) {
- parent::__wakeup();
- }
- }
- }
-
- public function __destruct()
- {
- if (isset($this->lazyObjectState)) {
- return;
- }
-
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['destruct']) {
- parent::__destruct();
- }
- }
-}
diff --git a/vendor/symfony/var-exporter/ProxyHelper.php b/vendor/symfony/var-exporter/ProxyHelper.php
deleted file mode 100644
index 2e150cb5c..000000000
--- a/vendor/symfony/var-exporter/ProxyHelper.php
+++ /dev/null
@@ -1,365 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\VarExporter;
-
-use Symfony\Component\VarExporter\Exception\LogicException;
-use Symfony\Component\VarExporter\Internal\Hydrator;
-use Symfony\Component\VarExporter\Internal\LazyObjectRegistry;
-
-/**
- * @author Nicolas Grekas
- */
-final class ProxyHelper
-{
- /**
- * Helps generate lazy-loading ghost objects.
- *
- * @throws LogicException When the class is incompatible with ghost objects
- */
- public static function generateLazyGhost(\ReflectionClass $class): string
- {
- if (\PHP_VERSION_ID >= 80200 && \PHP_VERSION_ID < 80300 && $class->isReadOnly()) {
- throw new LogicException(sprintf('Cannot generate lazy ghost: class "%s" is readonly.', $class->name));
- }
- if ($class->isFinal()) {
- throw new LogicException(sprintf('Cannot generate lazy ghost: class "%s" is final.', $class->name));
- }
- if ($class->isInterface() || $class->isAbstract()) {
- throw new LogicException(sprintf('Cannot generate lazy ghost: "%s" is not a concrete class.', $class->name));
- }
- if (\stdClass::class !== $class->name && $class->isInternal()) {
- throw new LogicException(sprintf('Cannot generate lazy ghost: class "%s" is internal.', $class->name));
- }
- if ($class->hasMethod('__get') && 'mixed' !== (self::exportType($class->getMethod('__get')) ?? 'mixed')) {
- throw new LogicException(sprintf('Cannot generate lazy ghost: return type of method "%s::__get()" should be "mixed".', $class->name));
- }
-
- static $traitMethods;
- $traitMethods ??= (new \ReflectionClass(LazyGhostTrait::class))->getMethods();
-
- foreach ($traitMethods as $method) {
- if ($class->hasMethod($method->name) && $class->getMethod($method->name)->isFinal()) {
- throw new LogicException(sprintf('Cannot generate lazy ghost: method "%s::%s()" is final.', $class->name, $method->name));
- }
- }
-
- $parent = $class;
- while ($parent = $parent->getParentClass()) {
- if (\stdClass::class !== $parent->name && $parent->isInternal()) {
- throw new LogicException(sprintf('Cannot generate lazy ghost: class "%s" extends "%s" which is internal.', $class->name, $parent->name));
- }
- }
- $propertyScopes = self::exportPropertyScopes($class->name);
-
- return <<name} implements \Symfony\Component\VarExporter\LazyObjectInterface
- {
- use \Symfony\Component\VarExporter\LazyGhostTrait;
-
- private const LAZY_OBJECT_PROPERTY_SCOPES = {$propertyScopes};
- }
-
- // Help opcache.preload discover always-needed symbols
- class_exists(\Symfony\Component\VarExporter\Internal\Hydrator::class);
- class_exists(\Symfony\Component\VarExporter\Internal\LazyObjectRegistry::class);
- class_exists(\Symfony\Component\VarExporter\Internal\LazyObjectState::class);
-
- EOPHP;
- }
-
- /**
- * Helps generate lazy-loading virtual proxies.
- *
- * @param \ReflectionClass[] $interfaces
- *
- * @throws LogicException When the class is incompatible with virtual proxies
- */
- public static function generateLazyProxy(?\ReflectionClass $class, array $interfaces = []): string
- {
- if (!class_exists($class?->name ?? \stdClass::class, false)) {
- throw new LogicException(sprintf('Cannot generate lazy proxy: "%s" is not a class.', $class->name));
- }
- if ($class?->isFinal()) {
- throw new LogicException(sprintf('Cannot generate lazy proxy: class "%s" is final.', $class->name));
- }
- if (\PHP_VERSION_ID >= 80200 && \PHP_VERSION_ID < 80300 && $class?->isReadOnly()) {
- throw new LogicException(sprintf('Cannot generate lazy proxy: class "%s" is readonly.', $class->name));
- }
-
- $methodReflectors = [$class?->getMethods(\ReflectionMethod::IS_PUBLIC | \ReflectionMethod::IS_PROTECTED) ?? []];
- foreach ($interfaces as $interface) {
- if (!$interface->isInterface()) {
- throw new LogicException(sprintf('Cannot generate lazy proxy: "%s" is not an interface.', $interface->name));
- }
- $methodReflectors[] = $interface->getMethods();
- }
- $methodReflectors = array_merge(...$methodReflectors);
-
- $extendsInternalClass = false;
- if ($parent = $class) {
- do {
- $extendsInternalClass = \stdClass::class !== $parent->name && $parent->isInternal();
- } while (!$extendsInternalClass && $parent = $parent->getParentClass());
- }
- $methodsHaveToBeProxied = $extendsInternalClass;
- $methods = [];
-
- foreach ($methodReflectors as $method) {
- if ('__get' !== strtolower($method->name) || 'mixed' === ($type = self::exportType($method) ?? 'mixed')) {
- continue;
- }
- $methodsHaveToBeProxied = true;
- $trait = new \ReflectionMethod(LazyProxyTrait::class, '__get');
- $body = \array_slice(file($trait->getFileName()), $trait->getStartLine() - 1, $trait->getEndLine() - $trait->getStartLine());
- $body[0] = str_replace('): mixed', '): '.$type, $body[0]);
- $methods['__get'] = strtr(implode('', $body).' }', [
- 'Hydrator' => '\\'.Hydrator::class,
- 'Registry' => '\\'.LazyObjectRegistry::class,
- ]);
- break;
- }
-
- foreach ($methodReflectors as $method) {
- if (($method->isStatic() && !$method->isAbstract()) || isset($methods[$lcName = strtolower($method->name)])) {
- continue;
- }
- if ($method->isFinal()) {
- if ($extendsInternalClass || $methodsHaveToBeProxied || method_exists(LazyProxyTrait::class, $method->name)) {
- throw new LogicException(sprintf('Cannot generate lazy proxy: method "%s::%s()" is final.', $class->name, $method->name));
- }
- continue;
- }
- if (method_exists(LazyProxyTrait::class, $method->name) || ($method->isProtected() && !$method->isAbstract())) {
- continue;
- }
-
- $signature = self::exportSignature($method, true, $args);
- $parentCall = $method->isAbstract() ? "throw new \BadMethodCallException('Cannot forward abstract method \"{$method->class}::{$method->name}()\".')" : "parent::{$method->name}({$args})";
-
- if ($method->isStatic()) {
- $body = " $parentCall;";
- } elseif (str_ends_with($signature, '): never') || str_ends_with($signature, '): void')) {
- $body = <<lazyObjectState)) {
- (\$this->lazyObjectState->realInstance ??= (\$this->lazyObjectState->initializer)())->{$method->name}({$args});
- } else {
- {$parentCall};
- }
- EOPHP;
- } else {
- if (!$methodsHaveToBeProxied && !$method->isAbstract()) {
- // Skip proxying methods that might return $this
- foreach (preg_split('/[()|&]++/', self::exportType($method) ?? 'static') as $type) {
- if (\in_array($type = ltrim($type, '?'), ['static', 'object'], true)) {
- continue 2;
- }
- foreach ([$class, ...$interfaces] as $r) {
- if ($r && is_a($r->name, $type, true)) {
- continue 3;
- }
- }
- }
- }
-
- $body = <<lazyObjectState)) {
- return (\$this->lazyObjectState->realInstance ??= (\$this->lazyObjectState->initializer)())->{$method->name}({$args});
- }
-
- return {$parentCall};
- EOPHP;
- }
- $methods[$lcName] = " {$signature}\n {\n{$body}\n }";
- }
-
- $types = $interfaces = array_unique(array_column($interfaces, 'name'));
- $interfaces[] = LazyObjectInterface::class;
- $interfaces = implode(', \\', $interfaces);
- $parent = $class ? ' extends \\'.$class->name : '';
- array_unshift($types, $class ? 'parent' : '');
- $type = ltrim(implode('&\\', $types), '&');
-
- if (!$class) {
- $trait = new \ReflectionMethod(LazyProxyTrait::class, 'initializeLazyObject');
- $body = \array_slice(file($trait->getFileName()), $trait->getStartLine() - 1, $trait->getEndLine() - $trait->getStartLine());
- $body[0] = str_replace('): parent', '): '.$type, $body[0]);
- $methods = ['initializeLazyObject' => implode('', $body).' }'] + $methods;
- }
- $body = $methods ? "\n".implode("\n\n", $methods)."\n" : '';
- $propertyScopes = $class ? self::exportPropertyScopes($class->name) : '[]';
-
- return <<getParameters() as $param) {
- $parameters[] = ($param->getAttributes(\SensitiveParameter::class) ? '#[\SensitiveParameter] ' : '')
- .($withParameterTypes && $param->hasType() ? self::exportType($param).' ' : '')
- .($param->isPassedByReference() ? '&' : '')
- .($param->isVariadic() ? '...' : '').'$'.$param->name
- .($param->isOptional() && !$param->isVariadic() ? ' = '.self::exportDefault($param) : '');
- $hasByRef = $hasByRef || $param->isPassedByReference();
- $args .= ($param->isVariadic() ? '...$' : '$').$param->name.', ';
- }
-
- if (!$param || !$hasByRef) {
- $args = '...\func_get_args()';
- } elseif ($param->isVariadic()) {
- $args = substr($args, 0, -2);
- } else {
- $args .= sprintf('...\array_slice(\func_get_args(), %d)', \count($parameters));
- }
-
- $signature = 'function '.($function->returnsReference() ? '&' : '')
- .($function->isClosure() ? '' : $function->name).'('.implode(', ', $parameters).')';
-
- if ($function instanceof \ReflectionMethod) {
- $signature = ($function->isPublic() ? 'public ' : ($function->isProtected() ? 'protected ' : 'private '))
- .($function->isStatic() ? 'static ' : '').$signature;
- }
- if ($function->hasReturnType()) {
- $signature .= ': '.self::exportType($function);
- }
-
- static $getPrototype;
- $getPrototype ??= (new \ReflectionMethod(\ReflectionMethod::class, 'getPrototype'))->invoke(...);
-
- while ($function) {
- if ($function->hasTentativeReturnType()) {
- return '#[\ReturnTypeWillChange] '.$signature;
- }
-
- try {
- $function = $function instanceof \ReflectionMethod && $function->isAbstract() ? false : $getPrototype($function);
- } catch (\ReflectionException) {
- break;
- }
- }
-
- return $signature;
- }
-
- public static function exportType(\ReflectionFunctionAbstract|\ReflectionProperty|\ReflectionParameter $owner, bool $noBuiltin = false, \ReflectionType $type = null): ?string
- {
- if (!$type ??= $owner instanceof \ReflectionFunctionAbstract ? $owner->getReturnType() : $owner->getType()) {
- return null;
- }
- $class = null;
- $types = [];
- if ($type instanceof \ReflectionUnionType) {
- $reflectionTypes = $type->getTypes();
- $glue = '|';
- } elseif ($type instanceof \ReflectionIntersectionType) {
- $reflectionTypes = $type->getTypes();
- $glue = '&';
- } else {
- $reflectionTypes = [$type];
- $glue = null;
- }
-
- foreach ($reflectionTypes as $type) {
- if ($type instanceof \ReflectionIntersectionType) {
- if ('' !== $name = '('.self::exportType($owner, $noBuiltin, $type).')') {
- $types[] = $name;
- }
- continue;
- }
- $name = $type->getName();
-
- if ($noBuiltin && $type->isBuiltin()) {
- continue;
- }
- if (\in_array($name, ['parent', 'self'], true) && $class ??= $owner->getDeclaringClass()) {
- $name = 'parent' === $name ? ($class->getParentClass() ?: null)?->name ?? 'parent' : $class->name;
- }
-
- $types[] = ($noBuiltin || $type->isBuiltin() || 'static' === $name ? '' : '\\').$name;
- }
-
- if (!$types) {
- return '';
- }
- if (null === $glue) {
- return (!$noBuiltin && $type->allowsNull() && 'mixed' !== $name ? '?' : '').$types[0];
- }
- sort($types);
-
- return implode($glue, $types);
- }
-
- private static function exportPropertyScopes(string $parent): string
- {
- $propertyScopes = Hydrator::$propertyScopes[$parent] ??= Hydrator::getPropertyScopes($parent);
- uksort($propertyScopes, 'strnatcmp');
- $propertyScopes = VarExporter::export($propertyScopes);
- $propertyScopes = str_replace(VarExporter::export($parent), 'parent::class', $propertyScopes);
- $propertyScopes = preg_replace("/(?|(,)\n( ) |\n |,\n (\]))/", '$1$2', $propertyScopes);
- $propertyScopes = str_replace("\n", "\n ", $propertyScopes);
-
- return $propertyScopes;
- }
-
- private static function exportDefault(\ReflectionParameter $param): string
- {
- $default = rtrim(substr(explode('$'.$param->name.' = ', (string) $param, 2)[1] ?? '', 0, -2));
-
- if (\in_array($default, ['', 'NULL'], true)) {
- return 'null';
- }
- if (str_ends_with($default, "...'") && preg_match("/^'(?:[^'\\\\]*+(?:\\\\.)*+)*+'$/", $default)) {
- return VarExporter::export($param->getDefaultValue());
- }
-
- $regexp = "/(\"(?:[^\"\\\\]*+(?:\\\\.)*+)*+\"|'(?:[^'\\\\]*+(?:\\\\.)*+)*+')/";
- $parts = preg_split($regexp, $default, -1, \PREG_SPLIT_DELIM_CAPTURE | \PREG_SPLIT_NO_EMPTY);
-
- $regexp = '/([\[\( ]|^)([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*+(?:\\\\[a-zA-Z0-9_\x7f-\xff]++)*+)(?!: )/';
- $callback = (false !== strpbrk($default, "\\:('") && $class = $param->getDeclaringClass())
- ? fn ($m) => $m[1].match ($m[2]) {
- 'new', 'false', 'true', 'null' => $m[2],
- 'NULL' => 'null',
- 'self' => '\\'.$class->name,
- 'namespace\\parent',
- 'parent' => ($parent = $class->getParentClass()) ? '\\'.$parent->name : 'parent',
- default => '\\'.$m[2],
- }
- : fn ($m) => $m[1].match ($m[2]) {
- 'new', 'false', 'true', 'null', 'self', 'parent' => $m[2],
- 'NULL' => 'null',
- default => '\\'.$m[2],
- };
-
- return implode('', array_map(fn ($part) => match ($part[0]) {
- '"' => $part, // for internal classes only
- "'" => false !== strpbrk($part, "\\\0\r\n") ? '"'.substr(str_replace(['$', "\0", "\r", "\n"], ['\$', '\0', '\r', '\n'], $part), 1, -1).'"' : $part,
- default => preg_replace_callback($regexp, $callback, $part),
- }, $parts));
- }
-}
diff --git a/vendor/w7corp/easywechat/docs/.npmrc b/vendor/w7corp/easywechat/docs/.npmrc
deleted file mode 100644
index 3e775efb0..000000000
--- a/vendor/w7corp/easywechat/docs/.npmrc
+++ /dev/null
@@ -1 +0,0 @@
-auto-install-peers=true
diff --git a/vendor/w7corp/easywechat/docs/src/4.x/client.md b/vendor/w7corp/easywechat/docs/src/4.x/client.md
deleted file mode 100644
index 8c486d0d5..000000000
--- a/vendor/w7corp/easywechat/docs/src/4.x/client.md
+++ /dev/null
@@ -1,44 +0,0 @@
-# API 调用
-
-该方法将 API 交由开发者自行调用,微信有部分新的接口4.x并未全部兼容支持,可以使用该方案去自行封装接口:
-
-例如URL Link接口
-```php
-$api = $app->getClient();
-
-$response = $api->httpPostJson('wxa/generate_urllink',[
- 'path' => 'pages/index/index',
- 'is_expire' => true,
- 'expire_type' => 1,
- 'expire_interval' => 1
-]);
-```
-
-## 语法说明
-
-```php
-httpGet(string $uri, array $query = [])
-httpPostJson(string $uri, array $data = [], array $query = [])
-```
-
-
-
-### GET
-
-```php
-$response = $api->httpGet('/cgi-bin/user/list', [
- 'next_openid' => 'OPENID1',
-]);
-```
-
-### POST
-
-```php
-$response = $api->httpPostJson('/cgi-bin/user/info/updateremark', [
- "openid" => "oDF3iY9ffA-hqb2vVvbr7qxf6A0Q",
- "remark" => "pangzi"
-]);
-```
-
-
-
diff --git a/vendor/w7corp/easywechat/docs/src/6.x/pay/media.md b/vendor/w7corp/easywechat/docs/src/6.x/pay/media.md
deleted file mode 100644
index 6db8d2fde..000000000
--- a/vendor/w7corp/easywechat/docs/src/6.x/pay/media.md
+++ /dev/null
@@ -1,32 +0,0 @@
-## 文件上传
-
-由于微信 v3 对文件类上传使用特殊的签名机制,参见:[微信支付 - 图片上传API](https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter2_1_1.shtml)。
-
-因此,我们提供了一个媒体上传方法,方便开发者使用。
-
-```php
-$path = '/path/to/your/files/demo.jpg';
-
-$api->uploadMedia('/v3/marketing/favor/media/image-upload', $path);
-```
-
-## 自定义 meta 信息
-
-部分接口使用的签名 meta 不一致,所以可以自行传入:
-
-```php
-$url = '/v3/...';
-$path = '/path/to/your/files/demo.jpg';
-$meta = [
- 'bank_type' => 'CFT',
- 'filename' => 'demo.jpg',
- 'sha256' => 'xxxxxxxxxxx',
-];
-
-$api->uploadMedia($url, $path, $meta);
-```
-
-## 关于 sha256
-
-- 文件,用 `hash_file('sha256', $path)` 计算
-- 字符串,用 `hash('sha256', $string)` 计算
diff --git a/vendor/w7corp/easywechat/src/Kernel/Contracts/JsApiTicket.php b/vendor/w7corp/easywechat/src/Kernel/Contracts/JsApiTicket.php
deleted file mode 100644
index 27616d207..000000000
--- a/vendor/w7corp/easywechat/src/Kernel/Contracts/JsApiTicket.php
+++ /dev/null
@@ -1,15 +0,0 @@
-
- */
- public function configSignature(string $url, string $nonce, int $timestamp): array;
-}
diff --git a/vendor/w7corp/easywechat/src/OpenWork/JsApiTicket.php b/vendor/w7corp/easywechat/src/OpenWork/JsApiTicket.php
deleted file mode 100644
index 12f82a3bc..000000000
--- a/vendor/w7corp/easywechat/src/OpenWork/JsApiTicket.php
+++ /dev/null
@@ -1,164 +0,0 @@
-httpClient = $httpClient ?? HttpClient::create(['base_uri' => 'https://qyapi.weixin.qq.com/']);
- $this->cache = $cache ?? new Psr16Cache(new FilesystemAdapter(namespace: 'easywechat', defaultLifetime: 1500));
- }
-
- /**
- * @return array
- *
- * @throws RedirectionExceptionInterface
- * @throws DecodingExceptionInterface
- * @throws ClientExceptionInterface
- * @throws InvalidArgumentException
- * @throws HttpException
- * @throws TransportExceptionInterface
- * @throws ServerExceptionInterface
- */
- public function createConfigSignature(string $nonce, int $timestamp, string $url, array $jsApiList = [], bool $debug = false, bool $beta = true): array
- {
- return [
- 'appId' => $this->corpId,
- 'nonceStr' => $nonce,
- 'timestamp' => $timestamp,
- 'url' => $url,
- 'signature' => $this->getTicketSignature($this->getTicket(), $nonce, $timestamp, $url),
- 'jsApiList' => $jsApiList,
- 'debug' => $debug,
- 'beta' => $beta,
- ];
- }
-
- public function getTicketSignature(string $ticket, string $nonce, int $timestamp, string $url): string
- {
- return sha1(sprintf('jsapi_ticket=%s&noncestr=%s×tamp=%s&url=%s', $ticket, $nonce, $timestamp, $url));
- }
-
- /**
- * @throws RedirectionExceptionInterface
- * @throws DecodingExceptionInterface
- * @throws ClientExceptionInterface
- * @throws InvalidArgumentException
- * @throws TransportExceptionInterface
- * @throws HttpException
- * @throws ServerExceptionInterface
- */
- public function getTicket(): string
- {
- $key = $this->getKey();
- $ticket = $this->cache->get($key);
-
- if ((bool) $ticket && is_string($ticket)) {
- return $ticket;
- }
-
- $response = $this->httpClient->request('GET', '/cgi-bin/get_jsapi_ticket')->toArray(false);
-
- if (empty($response['ticket'])) {
- throw new HttpException('Failed to get jssdk ticket: '.json_encode($response, JSON_UNESCAPED_UNICODE));
- }
-
- $this->cache->set($key, $response['ticket'], intval($response['expires_in']));
-
- return $response['ticket'];
- }
-
- public function setKey(string $key): static
- {
- $this->key = $key;
-
- return $this;
- }
-
- public function getKey(): string
- {
- return $this->key ?? $this->key = sprintf('open_work.jsapi_ticket.%s', $this->corpId);
- }
-
- /**
- * @throws ClientExceptionInterface
- * @throws DecodingExceptionInterface
- * @throws HttpException
- * @throws InvalidArgumentException
- * @throws RedirectionExceptionInterface
- * @throws ServerExceptionInterface
- * @throws TransportExceptionInterface
- */
- public function createAgentConfigSignature(int $agentId, string $nonce, int $timestamp, string $url, array $jsApiList = []): array
- {
- return [
- 'corpid' => $this->corpId,
- 'agentid' => $agentId,
- 'nonceStr' => $nonce,
- 'timestamp' => $timestamp,
- 'signature' => $this->getTicketSignature($this->getAgentTicket($agentId), $nonce, $timestamp, $url),
- 'jsApiList' => $jsApiList,
- ];
- }
-
- /**
- * @throws RedirectionExceptionInterface
- * @throws DecodingExceptionInterface
- * @throws InvalidArgumentException
- * @throws ClientExceptionInterface
- * @throws HttpException
- * @throws TransportExceptionInterface
- * @throws ServerExceptionInterface
- */
- public function getAgentTicket(int $agentId): string
- {
- $key = $this->getAgentKey($agentId);
- $ticket = $this->cache->get($key);
-
- if ((bool) $ticket && is_string($ticket)) {
- return $ticket;
- }
-
- $response = $this->httpClient->request('GET', '/cgi-bin/ticket/get', ['query' => ['type' => 'agent_config']])->toArray(false);
-
- if (empty($response['ticket'])) {
- throw new HttpException('Failed to get jssdk agentTicket: '.json_encode($response, JSON_UNESCAPED_UNICODE));
- }
-
- $this->cache->set($key, $response['ticket'], intval($response['expires_in']));
-
- return $response['ticket'];
- }
-
- public function getAgentKey(int $agentId): string
- {
- return sprintf('%s.%s', $this->getKey(), $agentId);
- }
-}
diff --git a/vendor/w7corp/easywechat/src/Pay/Contracts/Validator.php b/vendor/w7corp/easywechat/src/Pay/Contracts/Validator.php
deleted file mode 100644
index e06eeea21..000000000
--- a/vendor/w7corp/easywechat/src/Pay/Contracts/Validator.php
+++ /dev/null
@@ -1,15 +0,0 @@
-hasHeader($header)) {
- throw new InvalidSignatureException("Missing Header: {$header}");
- }
- }
-
- [$timestamp] = $message->getHeader(self::HEADER_TIMESTAMP);
- [$nonce] = $message->getHeader(self::HEADER_NONCE);
- [$serial] = $message->getHeader(self::HEADER_SERIAL);
- [$signature] = $message->getHeader(self::HEADER_SIGNATURE);
-
- $body = (string) $message->getBody();
-
- $message = "{$timestamp}\n{$nonce}\n{$body}\n";
-
- if (\time() - \intval($timestamp) > self::MAX_ALLOWED_CLOCK_OFFSET) {
- throw new InvalidSignatureException('Clock Offset Exceeded');
- }
-
- $publicKey = $this->merchant->getPlatformCert($serial);
-
- if (! $publicKey) {
- throw new InvalidConfigException(
- "No platform certs found for serial: {$serial},
- please download from wechat pay and set it in merchant config with key `certs`."
- );
- }
-
- if (false === \openssl_verify(
- $message,
- base64_decode($signature),
- strval($publicKey),
- OPENSSL_ALGO_SHA256
- )) {
- throw new InvalidSignatureException('Invalid Signature');
- }
- }
-}