phpstorm eap что это

Early Access Program

PhpStorm 2021.3 RC

PhpStorm 2021.3 Release Candidate is available! PhpStorm 2021.3 RC is the final build before the third major update of PhpStorm. Just a quick heads-up! Unlike previous EAP builds, this RC requires you to have a valid PhpStorm license. Besides the new features of the upcoming release, which we’ve covered in detail in the EAP blog posts, this build introduces Remote Development. Remote D

PhpStorm 2021.3 Beta

PhpStorm 2021.3 Beta is now available. Below is a roundup of the most notable updates for the upcoming 2021.3 release. The links will take you to the EAP posts published over the last few months, which contain detailed descriptions of each feature. PhpStorm 2021.3 Beta also delivers some updates we haven’t previously covered. Have a look! Full support for PHP 8.1 Readonly properties Pure i

PhpStorm 2021.3 EAP #7

PhpStorm 2021.3 EAP build #7 is now available! To catch up on all the new features coming to PhpStorm 2021.3, check out our previous EAP blog posts. In this blog post, you can read about enhancements for the HTTP client in the upcoming release. The Toolbox App is the easiest way to get the latest EAP builds and keep both your stable and EAP versions up to date. You can also manually download the

PhpStorm 2021.3 EAP #6

To make PhpStorm fully ready for PHP 8.1, we recently introduced support for the `new` operator in initializers, first-class callables, and some major deprecations in the language. There is also a new VCS action: Push All up to Here. Let’s look into these in more detail. The Early Access Program is coming to a close, and we are now focusing on stabilizing and polishing PhpStorm for release. This

PhpStorm 2021.3 EAP #5: Improved Refactorings

PhpStorm 2021.3 EAP build #5 is now available! To catch up on all the new features coming to PhpStorm 2021.3, check out our previous EAP blog posts. In this blog post, you can read about how Inline method, Inline variable, and Extract variable will be improved in the upcoming release. The Toolbox App is the easiest way to get the latest EAP builds and keep both your stable and EAP versions up to d

PhpStorm 2021.3 EAP Build #4

The fourth build of the PhpStorm 2021.3 Early Access Program is now available. Just like the other EAP builds, this build is free to use but it will expire 30 days after the build date. Download PhpStorm 2021.3 EAP (more…)

PhpStorm 2021.3 Early Access Build #3

The third build of our Early Access Program for PhpStorm 2021.3 is now available! In this blog post, we’ll go through some IDE improvements coming in the PhpStorm 2021.3 release. The Toolbox App is the easiest way to get the EAP builds and keep both your stable and EAP versions up to date. You can also manually download the EAP builds from our website. Download PhpStorm 2021.3 EAP (more…

PhpStorm 2021.3 Early Access #2: Faster and Better Deployment

Deployment capabilities will be significantly improved in the upcoming major PhpStorm release. Read on to find out what’s new, and try it today in our second EAP build. Last week we launched the Early Access Program for PhpStorm 2021.3, and we are going to be releasing updates every week for the next two months. Download PhpStorm 2021.3 EAP (more…)

PhpStorm 2021.3 Early Access Program Is Open

Today we’re starting the Early Access Program (EAP) for PhpStorm 2021.3. The third major release of PhpStorm this year will bring full support for all PHP 8.1 features, more enhancements for generics, rsync support, other improvements for deployment, a bunch of new inspections, improved refactorings, and a whole lot more. Join the Early Access Program to be among the first to try out the updates

PhpStorm 2021.2 RC

PhpStorm 2021.2 Release Candidate is available! PhpStorm 2021.2 RC is the final build before the major update of PhpStorm. Just a quick heads up! Unlike previous EAP builds, this RC requires you to have a valid PhpStorm license. The most notable new features of the upcoming release are covered in details in the EAP blog posts. A list of the changes that have been introduced since the Beta is a

PhpStorm 2021.2 Beta: Generics Support Is Coming

PhpStorm 2021.1 Beta is now available. We are adding preliminary support for generics in PHP. Let’s get straight to it. Support for Generics Are there generics in PHP? No. Although generics is one of the most wanted features in the PHP language, according to the JetBrains Developer Ecosystem survey, there are no plans to add them any time in the near future. Nikita Popov researched the feasibilit

PhpStorm 2021.2 EAP #6

This build introduces support for one-line array shapes definitions in PHPDoc. Read on to learn more. The Early Access Program is coming to a close, and we are now focusing on stabilizing and polishing PhpStorm for release. This is a good time to report any lingering issues that you’ve encountered to our tracker, as there is still time to fix them before the release. Download PhpStorm 2021.2 EAP

Источник

What’s New in PhpStorm 2021.3

PhpStorm 2021.3 is a major update that introduces support for the recently released PHP 8.1, better handling of generics in PHP, and enhancements for deployment, HTTP client, and VCS integration.

PHP 8.1

A new version of the interpreter has just been released! Check out the video from Brent Roose and community members for an overview of all the new language features.

Enums

One of the most highly anticipated features of PHP 8.1 is enums.

Support for enums was introduced in PhpStorm 2021.2, offering code suggestions and validation to protect you from using them incorrectly.

An enum in PHP contains a set of cases, can have methods, and can be used as a type hint. In all of these cases, PhpStorm provides error highlighting and proper suggestions to save you time.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Readonly properties

Readonly properties are the properties that cannot be changed after initialization, that is, after a value is assigned to them.

PhpStorm 2021.3 will help you make use of readonly properties in your code and make sure they are used correctly.

A dedicated inspection will check that a readonly property is initialized only in the same scope where it’s declared, either the property declaration itself or in a class method.

Since readonly properties must always be typed, PhpStorm will check if the type declaration is specified.

A readonly property cannot have a default value, but you can initialize it in the constructor as a promoted property, so PhpStorm provides a quick-fix for this.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

`new` operator in initializers

In PHP 8.1, you can use new expressions when initializing default parameters’ values, static variables, global constants, and attribute arguments.

PhpStorm will verify such usages and highlight invalid cases such as providing a new object as a class constant or property.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

First-class callables

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Pure intersection types

PHP 8.1 brings intersection types, whose value must satisfy multiple type constraints instead of just a single one.

PhpStorm will now provide code completion for these constructs and check that an intersection type is not combined with a union type. And if you have an intersection type specified as a PHPDoc annotation, PhpStorm will interpret it correctly, too.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

New return type: `never`

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Final constants

In PHP 8.1 you can declare final class constants so that they cannot be overridden in child classes, and PhpStorm will verify such cases.

Deprecations

In addition to new features, PHP 8.1 brings several deprecations aimed at making the language more consistent and easier to use. PhpStorm will help you locate such deprecated code. Here are a couple of examples:

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Deprecated usage of Serializable interfaces

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Restricted GLOBALS usage

Generics for PHP

PHP does not provide support for generics on a language level yet, but using them via annotations has already become quite popular. They make code safer and more predictable when working with collections, containers, factories, and other applications. PhpStorm 2021.3 expands the support for generics via the @template annotation.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Improved support for Doctrine Collections

PhpStorm brings support for the IteratorAggregate interface and iterating over Doctrine Collections now works out of the box.

Support for Laravel collections

In the upcoming Laravel release, the illuminate/collections package will support generics annotations. PhpStorm 2021.3 provides better code completion for such collections.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Inferring generic types from constructor

If there is a generic @template parameter in a constructor and you want to specify the type by passing an object as an argument, PhpStorm will now infer the correct type and provide code completion.

Refactorings

Move classes via drag and drop

Earlier, to move a class and update its namespace, your only option was to use the move refactoring ( F6 ) in the code editor. In PhpStorm 2021.3, you can use drag and drop in the Project view instead. This way, the project structure would be visible during operation. And what’s more, you can move several classes or entire folders using this technique, and PhpStorm will correctly update all the references.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Inline function or method

The Inline method refactoring lets you replace the calls to the method with the method’s content and delete the method itself. In PhpStorm 2021.3, the refactoring received multiple improvements and will cover even more cases. For example, non-static methods, method chains, and arrow/anonymous functions passed as parameters are now supported.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Inline variable

The Inline variable refactoring lets you replace the references to a variable with the actual variable’s value. In PhpStorm 2021.3, this refactoring supports inlining NOWDOC/HEREDOC variables and includes several usability enhancements.

Deployment

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Support for rsync

When using an SFTP server for deployment, you can enable rsync for uploading and downloading files and folders, which will significantly increase transfer speeds. The corresponding Use rsync for download/upload option is located in the Advanced section of the deployment server configuration.

The path to the rsync executable can be configured under Settings/Preferences | Tools | Rsync. For macOS and Linux, it should be available right away. For Windows, it is recommended to use Cygwin and OpenSSH.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Retransmit files that failed to upload

PhpStorm 2021.3 lets you retransmit the files that failed to upload. In such cases, click the Retry link in the File Transfer tool window.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Proxy support for SSH connections

You can now specify an HTTP or SOCKS proxy server for your SSH configuration under Settings/Preferences | Tools | SSH Configurations.

It’s also possible to use the global IDE-wide proxy. To do this, enable the Use global IDE proxy settings checkbox and provide the proxy details under Settings/Preferences | Appearance & Behavior | System Settings | HTTP Proxy.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Quickly switch default server for project

PhpStorm 2021.3 provides a new status bar widget that shows the current default server. When you need to deal with multiple environments, you can switch between them right from there without going to the settings.

HTTP Client

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Binary responses in the HTTP client

The HTTP client now supports binary responses. If a received response is an image, you will see its preview right in the response console.

Output redirection to custom file or directory

The HTTP client can now redirect output to a custom file or directory. It supports two operators for force and soft redirects:

In addition to providing explicit file paths, you can now use new predefined variables: {{$projectRoot}} points to the project root folder and {{$historyFolder}} points to the requests history folder.

Support for HTTP request identifiers

In PhpStorm 2021.3, your HTTP requests can be named! You can provide an identifier as a comment with @name as well as text in the requests separator ( ### ).

You can then invoke a request by its name via the Services tool window, from the Run Configuration, Run Anything, or Search Everywhere dialogs.

User Experience

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

New Bookmarks tool window

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Source preview for Show Usages

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Align Changes Highlighting

We’ve added the new Align Changes Highlighting option to the Diff screen settings that can be found under the gear icon. This feature makes the Diff easier to read, especially when there are complex modifications, because it aligns the unchanged lines so that they are displayed next to each other. This helps you see the code that has been added or removed more clearly.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Checkout and Rebase onto Current for remote branches

The Checkout and Rebase onto Current action lets you check out the selected branch and rebase it on top of a branch that is currently checked out. This was only possible for local branches before, but in PhpStorm 2021.3, this action can be applied to remote branches as well.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

New ‘Push All up to Here’ action

If you have several commits that are ready to be shipped while others are still work in progress, then you may want to push only the ones you are sure about. PhpStorm 2021.3 will let you push commits up to the one you have selected in the Log tab of the Git tool window. Select the necessary commit, right-click it and use the new Push All up to Here action.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Reorganized VCS settings

The Version Control page in Settings/Preferences has been streamlined for better usability and now lists all of the available settings. The Git node is now divided into sections that account for the most important processes: Commit, Push, and Update. A separate node for Directory mappings has been added. Since the background operations are now switched on by default, the Background node has been removed.

Источник

How to download and use PhpStorm for free legally

The are a lot of free and open-source integrated development environments for PHP language. For example, you can use for free tools like Komodo, Eclipse PDT, NetBeans IDE, Atom.

Those are great, but there are also paid products that provide additional features. One of the best IDE for PHP is PhpStrom by JetBrains.

What is EAP?

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

EAP is Early Access Program. This is a special beta–testing program by JetBrains for developers, who want to try new features before they appear in release version of the software.

Here is the description I took at official EAP page of PhpStorm:

«At JetBrains, we believe that to make great tools for developers, we should listen to and involve developers. Our Early Access Program (EAP) lets our development community participate in the product discussions and influence development planning, from the very early stages.»

«This is an early access version of the product. You expressly acknowledge that this version of the product may not be reliable, may not work as intended and may contain errors. Any use of the EAP product is at your own risk.»

What are the differences compared to original paid version?

There are a few key differences compared to paid version:

30 days to continue use PhpStorm for free.

As you can see, there are some advantages & disadvantages, but you get brilliant IDE for PHP for free and absolutely legally.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Where to download EAP version of PhpStorm?

Just use this link to download the latest EAP version of PhpStorm for any platform (Windows, macOS, Linux):

On the same page you will find the list of changes of current EAP version + list and links for previous releases.

To download the installation file for a different platform you need to click on the arrow button and select your operational system. Then you can click on Download. After installing the icon of the PhpStorm will contain an EAP yellow label.

Get other JetBrains products for free

EAP program works for other JetBrains products, so you can also use them for free:

And many more. Here is the full list of JetBrains products. Just add /nextversion/ to the end of certain product page to get EAP version download link. Some products may need a license to download even the EAP version. In this case, you will have an option to download the community edition, which is also free (but with limited features).

Источник

PhpStorm 2021.2 Early Access Program Is Open

Today we’re starting the Early Access Program (EAP) for PhpStorm 2021.2.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

You can get the first EAP build via the Toolbox App, download it from our website, use a snap package (for Ubuntu), or from inside PhpStorm, select Automatically check updates for Early Access Program under Preferences / Settings | Appearance & Behavior | System Settings | Updates.

If you’re not familiar with our EAP, here’s a quick recap.

Along with the build, every week we will publish a post with a story about new features and changes. Follow us on Twitter @phpstorm and be the first to get each new post.

Occasionally, a video outlining the most recent features appears on our YouTube channel, so subscribe to stay posted.

With that said, let’s take a look at the first portion of the updates in the upcoming 2021.2 release.

PHP 8.1

The new version of the interpreter is expected to be released in late November. As is our tradition, we will start rolling out support for new features early. One of the most significant and expected features will, of course, be enums.

If you don’t want to miss what else is planned for PHP 8.1, sign up for our PHP Annotated newsletter with a roundup of news from the PHP world.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Enums

Declare a new enum using the keywords enum and case. PhpStorm will, of course, help you with autocompletion and let you know if anything doesn’t follow the language syntax.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Declared enums can be used as type declarations in parameters, return values, and class properties. PhpStorm will check the type and highlight violations in the editor window.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

You can quickly create new cases with a quick-fix. Type case usage as if it existed, then press Alt+Enter on it and choose Add enum case.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Backed Enums

By default, enumerated cases are simple singleton objects. But if you want to save them to a database or similar data store, then you can define scalar values for cases.

Enums with scalar equivalents for cases are called backed enums.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

If you define a standard enum (unit enum) and then decide to make it a backed one, PhpStorm will have a quick-fix to add a type of the whole enum. Press Alt+Enter on the highlighted case value and choose the option to add `: type` to the declaration.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Did you know you can call enum Enum? That’s because it’s defined as a context keyword and not a reserved word on its own. So it should not collide with any existing userland implementations of enums that you might have.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

That’s all for enums so far. Let us know if you have any ideas on how to make the support better.

Formatter improvements

For a long time, PhpStorm has had some quirks with formatting. While it worked fine most of the time, it could be very annoying in some fringe cases.

In PhpStorm 2021.2 we decided to fix all outstanding issues with formatting so that you always get what you expect!

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

All code style options are available under Settings/Preferences | Editor | Code Style | PHP.

Because of the formatting issues, some PhpStorm features could be somewhat unusable sometimes. Now they can become real timesavers.

One example would be splitting lists into separate lines and, vice versa, merging them into one. In arrays, argument list, or parameter list, press Alt+Enter and select Split comma-separated values into multiple lines:

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

When using multiple lines for lists, you can choose how to align items. For example, for parameters with type declarations, you can make them more readable by aligning types and names in columns:

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

If you come across formatting problems that we missed, please report them to our issue tracker!

Other for PHP

Support for dirname levels

PhpStorm used to lose path completion when this second parameter was used. Now it works as expected.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Search Everywhere Ignores Imports

Following your reports on problems with the Search Everywhere dialog, we’ve made some improvements to it. Specifically, symbols from the vendor directory will have low priority on the All tab and will not show up on the Symbols tab.

PhpStorm inherits many improvements from the IntelliJ Platform with every release. Here are the ones that will make it into 2021.2.

Browser pages reload on save

As you may know, PhpStorm lets you preview HTML and PHP files in a browser using the built-in web server.

To try this new feature, open an HTML or PHP file, hover over the code, and click on the icon for the browser you want to use (all browsers are supported). You can also preview the file in a browser by going to View | Open in Browser in the main menu.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Reloading on save is turned on by default. To tweak the settings for it or to turn it off, go to the Built-in Server section in Preferences / Settings | Build, Execution, Deployment | Debugger. When you use the feature for the first time, you’ll also see a popup with a link to the same settings.

The new feature may sound similar to the Live Edit feature that PhpStom has had for some time already. But the key difference is that Live Edit does not use the built-in IDE server and is more advanced. With the new feature, we wanted to provide a more straightforward experience and make the reloading process more predictable and available in all browsers.

Improvements for the Preferences / Settings dialog

There’s now a new node with advanced settings in your Preferences / Settings dialog. This node contains some additional configuration options. Most of them were transferred from the Registry. They weren’t used often but were still helpful for some users, so we wanted to make those options easier to access. You’ll also find some new configuration options there, such as the ability to set a left margin in Distraction-free mode.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

In the future, we plan to move some of the rarely used options that are currently available under the regular settings to this new node.

Additionally, you can now navigate back and forth between open sections in your Preferences / Settings dialog. To do so, use the arrows in the right-hand corner of the window.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

Automatic cache and logs cleanup

Previously, PhpStorm’s logs and cache files could take up a considerable amount of hard drive space over time.

Now, after each major update, your IDE will automatically clean up any cache and log directories that were last updated more than 180 days ago. The system settings and plugins directories will stay intact.

Or if you want to trigger this process manually, go to Help | Delete Leftover IDE Directories… in the main menu.

phpstorm eap что это. Смотреть фото phpstorm eap что это. Смотреть картинку phpstorm eap что это. Картинка про phpstorm eap что это. Фото phpstorm eap что это

To learn more about the directories used by the IDE and their locations, check out this article.

The full list of changes in this build is available in the release notes.

You are very welcome to share your feedback in the comments below, by tweeting @phpstorm, or via our issue tracker.

Your JetBrains PhpStorm team
The Drive to Develop

Источник

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *